Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php echo "\x3c\170\x2d\x61\144\x6d\x69\x6e\x3a\x3a\x6c\141\x79\x6f\165\x74\x73\76\12\x2..

Decoded Output download

<?php
 echo "<x-admin::layouts>
    <!-- Title of the page -->\xa    <x-slot:title>
        @lang('admin::app.marketing.promotions.cart-rules.edit.title')
    </x-slot>\xa
    {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.before') !!}

    <v-cart-rule-edit-form></v-cart-rule-edit-form>

    {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.after') !!}

    @pushOnce('scripts')\xa        <!-- v cart rules edit form template -->
        <script
            type="text/x-template"\xa            id="v-cart-rule-edit-form-template"
        >
            <div>\xa                <x-admin::form
                    :action="route('admin.marketing.promotions.cart_rules.update', $cartRule->id)"\xa                    method="PUT"\xa                    enctype="multipart/form-data"\xa                    id="update-cart-rule"\xa                >\xa
                    {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.edit_form_controls.before') !!}

                    <div class="flex gap-4 justify-between items-center mt-3 max-sm:flex-wrap">\xa                        <p class="text-xl text-gray-800 dark:text-white font-bold">
                            @lang('admin::app.marketing.promotions.cart-rules.edit.title')
                        </p>
\xa                        <div class="flex gap-x-2.5 items-center">
                            <!-- Back Button -->\xa                            <a
                                href="{{ route('admin.marketing.promotions.cart_rules.index') }}"\xa                                class="transparent-button hover:bg-gray-200 dark:hover:bg-gray-800 dark:text-white"\xa                            >
                                @lang('admin::app.marketing.promotions.cart-rules.edit.back-btn')\xa                            </a>

                            <!-- Save buton -->
                            <button
                                type="button"
                                class="primary-button"
                                onclick="document.getElementById('update-cart-rule').submit()"
                            >
                                @lang('admin::app.marketing.promotions.cart-rules.edit.save-btn')
                            </button>
                        </div>\xa                    </div>
\xa                    <!-- body content  -->\xa                    <div class="flex gap-2.5 mt-3.5 max-xl:flex-wrap">
                        <!-- Left sub-component -->
                        <div class="flex flex-col gap-2 flex-1 max-xl:flex-auto">\xa\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.general.before') !!}\xa
                            <!-- General -->
                            <div class="p-4 bg-white dark:bg-gray-900 rounded box-shadow">\xa                                <p class=" mb-4 text-base text-gray-800 dark:text-white font-semibold">
                                    @lang('admin::app.marketing.promotions.cart-rules.edit.general')\xa                                </p>

                                <x-admin::form.control-group>
                                    <x-admin::form.control-group.label class="required">
                                        @lang('admin::app.marketing.promotions.cart-rules.edit.name')\xa                                    </x-admin::form.control-group.label>\xa
                                    <x-admin::form.control-group.control
                                        type="text"
                                        id="name"\xa                                        name="name"
                                        rules="required"\xa                                        :value="old('name') ?? $cartRule->name"\xa                                        :label="trans('admin::app.marketing.promotions.cart-rules.edit.name')"
                                        :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.name')"\xa                                    />

                                    <x-admin::form.control-group.error control-name="name" />
                                </x-admin::form.control-group>
\xa                                <x-admin::form.control-group>\xa                                    <x-admin::form.control-group.label>\xa                                        @lang('admin::app.marketing.promotions.cart-rules.edit.description')
                                    </x-admin::form.control-group.label>\xa
                                    <x-admin::form.control-group.control
                                        type="textarea"\xa                                        class="text-gray-600 dark:text-gray-300"\xa                                        id="description"\xa                                        name="description"
                                        :value="old('description') ?? $cartRule->description"\xa                                        :label="trans('admin::app.marketing.promotions.cart-rules.edit.description')"\xa                                        :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.description')"
                                    />\xa
                                    <x-admin::form.control-group.error control-name="description" />\xa                                </x-admin::form.control-group>\xa\xa                                <x-admin::form.control-group>
                                    <x-admin::form.control-group.label class="required">\xa                                        @lang('admin::app.marketing.promotions.cart-rules.edit.coupon-type')
                                    </x-admin::form.control-group.label>\xa\xa                                    <x-admin::form.control-group.control
                                        type="select"\xa                                        id="coupon_type"\xa                                        name="coupon_type"
                                        rules="required"
                                        v-model="couponType"\xa                                        :label="trans('admin::app.marketing.promotions.cart-rules.edit.coupon-type')"\xa                                        :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.coupon-type')"
                                    >
                                        <option\xa                                            value="0"
                                            {{ old('coupon_type') == 0 ? 'selected' : '' }}\xa                                        >\xa                                            @lang('admin::app.marketing.promotions.cart-rules.edit.no-coupon')\xa                                        </option>\xa\xa                                        <option\xa                                            value="1"\xa                                            {{ old('coupon_type') == 1 ? 'selected' : '' }}\xa                                        >
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.specific-coupon')
                                        </option>
                                    </x-admin::form.control-group.control>\xa
                                    <x-admin::form.control-group.error control-name="coupon_type" />
                                </x-admin::form.control-group>

                                <template v-if="parseInt(couponType)">
                                    <x-admin::form.control-group>\xa                                        <x-admin::form.control-group.label class="required">\xa                                            @lang('admin::app.marketing.promotions.cart-rules.edit.auto-generate-coupon')
                                        </x-admin::form.control-group.label>\xa\xa                                        <x-admin::form.control-group.control\xa                                            type="select"
                                            id="use_auto_generation"
                                            name="use_auto_generation"
                                            rules="required"\xa                                            v-model="useAutoGeneration"\xa                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.auto-generate-coupon')"\xa                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.auto-generate-coupon')"\xa                                        >
                                            <option\xa                                                value="0"
                                                {{ old('use_auto_generation') == 0 ? 'selected' : '' }}\xa                                            >\xa                                                @lang('admin::app.marketing.promotions.cart-rules.edit.no')
                                            </option>
\xa                                            <option
                                                value="1"
                                                {{ old('use_auto_generation') == 1 ? 'selected' : '' }}\xa                                            >\xa                                                @lang('admin::app.marketing.promotions.cart-rules.edit.yes')
                                            </option>
                                        </x-admin::form.control-group.control>

                                        <x-admin::form.control-group.error control-name="coupon_type" />
                                    </x-admin::form.control-group>\xa
                                    <x-admin::form.control-group v-if="! parseInt(useAutoGeneration)">\xa                                        <x-admin::form.control-group.label class="required">
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.coupon-code')
                                        </x-admin::form.control-group.label>
\xa                                        <x-admin::form.control-group.control\xa                                            type="text"\xa                                            id="coupon_code"
                                            name="coupon_code"
                                            rules="required"\xa                                            :value="old('coupon_code') ?? $cartRule->coupon_code"
                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.coupon-code')"\xa                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.coupon-code')"
                                        />
\xa                                        <x-admin::form.control-group.error control-name="coupon_code" />\xa                                    </x-admin::form.control-group>
                                    \xa                                    <x-admin::form.control-group>
                                        <x-admin::form.control-group.label>
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.uses-per-coupon')
                                        </x-admin::form.control-group.label>
\xa                                        <x-admin::form.control-group.control
                                            type="text"
                                            id="uses_per_coupon"
                                            name="uses_per_coupon"\xa                                            :value="old('uses_per_coupon') ?? $cartRule->uses_per_coupon"\xa                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.uses-per-coupon')"
                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.uses-per-coupon')"
                                        />
\xa                                        <x-admin::form.control-group.error control-name="uses_per_coupon" />\xa                                    </x-admin::form.control-group>
                                </template>
\xa                                <x-admin::form.control-group>
                                    <x-admin::form.control-group.label>
                                        @lang('admin::app.marketing.promotions.cart-rules.edit.uses-per-customer')
                                    </x-admin::form.control-group.label>
\xa                                    <x-admin::form.control-group.control
                                        type="text"
                                        id="usage_per_customer"
                                        name="usage_per_customer"\xa                                        :value="old('usage_per_customer') ?? $cartRule->usage_per_customer"
                                        :label="trans('admin::app.marketing.promotions.cart-rules.edit.uses-per-customer')"
                                        :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.uses-per-customer')"\xa                                    />\xa\xa                                    <x-admin::form.control-group.error control-name="usage_per_customer" />
                                </x-admin::form.control-group>\xa\xa                                <p class="text-sm text-gray-500">
                                    @lang('admin::app.marketing.promotions.cart-rules.edit.uses-per-customer-control-info')\xa                                </p>\xa                            </div>
\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.general.after') !!}\xa\xa                            <!-- component for auto generate coupon code -->\xa                            <v-create-coupon-form v-if="parseInt(useAutoGeneration) && parseInt(couponType)"></v-create-coupon-form>
\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.conditions.before') !!}

                            <!-- Conditions -->\xa                            <div class="p-4 bg-white dark:bg-gray-900 rounded box-shadow">
                                <div class="flex gap-4 items-center justify-between mb-8">\xa                                    <p class="text-base text-gray-800 dark:text-white font-semibold">\xa                                        @lang('admin::app.marketing.promotions.cart-rules.edit.conditions')\xa                                    </p>
\xa                                    <x-admin::form.control-group>
                                        <x-admin::form.control-group.label>
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.condition-type')\xa                                        </x-admin::form.control-group.label>

                                        <x-admin::form.control-group.control\xa                                            type="select"
                                            class="ltr:pr-10 rtl:pl-10"
                                            id="condition_type"\xa                                            name="condition_type"
                                            v-model="conditionType"
                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.condition-type')"\xa                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.condition-type')"
                                        >\xa                                            <option value="1">
                                                @lang('admin::app.marketing.promotions.cart-rules.edit.all-conditions-true')\xa                                            </option>\xa\xa                                            <option value="2">\xa                                                @lang('admin::app.marketing.promotions.cart-rules.edit.any-conditions-true')\xa                                            </option>\xa                                        </x-admin::form.control-group.control>\xa\xa                                        <x-admin::form.control-group.error control-name="condition_type" />\xa                                    </x-admin::form.control-group>\xa                                </div>\xa\xa                                <v-cart-rule-condition-item\xa                                    v-for='(condition, index) in conditions'\xa                                    :condition="condition"\xa                                    :key="index"\xa                                    :index="index"
                                    @onRemoveCondition="removeCondition($event)"\xa                                >\xa                                </v-cart-rule-condition-item>

                                <div
                                    class="secondary-button max-w-max mt-4"\xa                                    @click="addCondition"\xa                                >\xa                                    @lang('admin::app.marketing.promotions.cart-rules.edit.add-condition')\xa                                </div>\xa\xa                            </div>
\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.conditions.after') !!}
\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.actions.before') !!}

                            <!-- Action -->
                            <div class="p-4 bg-white dark:bg-gray-900 rounded box-shadow">
                                <div class="grid gap-1.5">
                                    <p class="mb-4 text-base text-gray-800 dark:text-white font-semibold">
                                        @lang('admin::app.marketing.promotions.cart-rules.edit.actions')
                                    </p>
\xa                                    <div class="flex gap-4  max-sm:flex-wrap">\xa                                        <div class="w-full">\xa                                            <x-admin::form.control-group>\xa                                                <x-admin::form.control-group.label class="required">
                                                    @lang('admin::app.marketing.promotions.cart-rules.edit.action-type')
                                                </x-admin::form.control-group.label>\xa
                                                <x-admin::form.control-group.control\xa                                                    type="select"
                                                    id="action_type"\xa                                                    name="action_type"\xa                                                    rules="required"
                                                    v-model="actionType"
                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.action-type')"\xa                                                    :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.action-type')"\xa                                                >
                                                    <option
                                                        value="by_percent"
                                                        {{ old('action_type') == 'by_percent' ? 'selected' : '' }}
                                                    >
                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.percentage-product-price')
                                                    </option>

                                                    <option\xa                                                        value="by_fixed"\xa                                                        {{ old('action_type') == 'by_fixed' ? 'selected' : '' }}
                                                    >
                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.fixed-amount')\xa                                                    </option>

                                                    <option
                                                        value="cart_fixed"\xa                                                        {{ old('action_type') == 'cart_fixed' ? 'selected' : '' }}
                                                    >\xa                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.fixed-amount-whole-cart')\xa                                                    </option>

                                                    <option
                                                        value="buy_x_get_y"\xa                                                        {{ old('action_type') == 'buy_x_get_y' ? 'selected' : '' }}
                                                    >
                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.buy-x-get-y-free')\xa                                                    </option>\xa                                                </x-admin::form.control-group.control>
\xa                                                <x-admin::form.control-group.error control-name="action_type" />
                                            </x-admin::form.control-group>
                                        </div>

                                        <div class="w-full">\xa                                            <x-admin::form.control-group>\xa                                                <x-admin::form.control-group.label class="required">
                                                    @lang('admin::app.marketing.promotions.cart-rules.edit.discount-amount')
                                                </x-admin::form.control-group.label>

                                                <x-admin::form.control-group.control
                                                    type="text"
                                                    id="discount_amount"\xa                                                    name="discount_amount"
                                                    rules="required"\xa                                                    :value="old('discount_amount') ?? $cartRule->discount_amount"\xa                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.discount-amount')"\xa                                                    :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.discount-amount')"\xa                                                />\xa\xa                                                <x-admin::form.control-group.error control-name="discount_amount" />\xa                                            </x-admin::form.control-group>
                                        </div>
                                    </div>\xa\xa                                    <div class="flex gap-4 max-sm:flex-wrap">
                                        <div class="w-full">
                                            <x-admin::form.control-group>
                                                <x-admin::form.control-group.label>\xa                                                    @lang('admin::app.marketing.promotions.cart-rules.edit.maximum-quantity-allowed-to-be-discounted')\xa                                                </x-admin::form.control-group.label>\xa\xa                                                <x-admin::form.control-group.control
                                                    type="text"
                                                    id="discount_quantity"\xa                                                    name="discount_quantity"
                                                    :value="old('discount_quantity') ?? $cartRule->discount_quantity"
                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.maximum-quantity-allowed-to-be-discounted')"
                                                    :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.maximum-quantity-allowed-to-be-discounted')"\xa                                                />

                                                <x-admin::form.control-group.error control-name="discount_quantity" />
                                            </x-admin::form.control-group>\xa                                        </div>

                                        <div class="w-full">\xa                                            <x-admin::form.control-group>\xa                                                <x-admin::form.control-group.label>
                                                    @lang('admin::app.marketing.promotions.cart-rules.edit.buy-x-quantity')\xa                                                </x-admin::form.control-group.label>\xa\xa                                                <x-admin::form.control-group.control\xa                                                    type="text"
                                                    name="discount_step"
                                                    :value="old('discount_step') ?? $cartRule->discount_step"
                                                    id="discount_step"\xa                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.buy-x-quantity')"\xa                                                    :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.buy-x-quantity')"\xa                                                />
\xa                                                <x-admin::form.control-group.error control-name="discount_step" />
                                            </x-admin::form.control-group>
                                        </div>
                                    </div>

                                    <div class="flex gap-4 max-sm:flex-wrap">\xa                                        <div class="w-full">
                                            @php($selectedOption = old('apply_to_shipping') ?? $cartRule->apply_to_shipping)

                                            <x-admin::form.control-group>
                                                <x-admin::form.control-group.label>\xa                                                    @lang('admin::app.marketing.promotions.cart-rules.edit.apply-to-shipping')\xa                                                </x-admin::form.control-group.label>

                                                <x-admin::form.control-group.control
                                                    type="select"
                                                    id="apply_to_shipping"\xa                                                    name="apply_to_shipping"
                                                    :value="old('apply_to_shipping') ?? $cartRule->apply_to_shipping"
                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.apply-to-shipping')"
                                                    :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.apply-to-shipping')"\xa                                                    ::disabled="actionType == 'cart_fixed'"\xa                                                >
                                                    <option
                                                        value="0"\xa                                                        {{ ! $selectedOption ? 'selected' : '' }}
                                                    >
                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.no')
                                                    </option>\xa
                                                    <option\xa                                                        value="1"
                                                        {{ $selectedOption ? 'selected' : '' }}
                                                    >\xa                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.yes')
                                                    </option>
                                                </x-admin::form.control-group.control>
\xa                                                <x-admin::form.control-group.error control-name="apply_to_shipping" />
                                            </x-admin::form.control-group>
                                        </div>\xa
                                        <div class="w-full">
                                            @php($selectedOption = old('free_shipping') ?? $cartRule->free_shipping)

                                            <x-admin::form.control-group>\xa                                                <x-admin::form.control-group.label>
                                                    @lang('admin::app.marketing.promotions.cart-rules.edit.free-shipping')\xa                                                </x-admin::form.control-group.label>\xa\xa                                                <x-admin::form.control-group.control\xa                                                    type="select"
                                                    id="free_shipping"\xa                                                    name="free_shipping"
                                                    :value="old('free_shipping') ?? $cartRule->free_shipping"\xa                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.free-shipping')"
                                                    :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.free-shipping')"\xa                                                >
                                                    <option\xa                                                        value="0"\xa                                                        {{ ! $selectedOption ? 'selected' : '' }}\xa                                                    >
                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.no')
                                                    </option>

                                                    <option
                                                        value="1"\xa                                                        {{ $selectedOption ? 'selected' : '' }}
                                                    >
                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.yes')\xa                                                    </option>\xa                                                </x-admin::form.control-group.control>\xa
                                                <x-admin::form.control-group.error control-name="free_shipping" />\xa                                            </x-admin::form.control-group>\xa                                        </div>
                                    </div>\xa
                                    <div class="flex gap-4 justify-between max-sm:flex-wrap">
                                        <div class="w-full">
                                            @php($selectedOption = old('end_other_rules') ?? $cartRule->end_other_rules)

                                            <x-admin::form.control-group class="!mb-0">
                                                <x-admin::form.control-group.label>\xa                                                    @lang('admin::app.marketing.promotions.cart-rules.edit.end-of-other-rules')
                                                </x-admin::form.control-group.label>
\xa                                                <x-admin::form.control-group.control
                                                    type="select"
                                                    class="!w-1/2 max-sm:!w-full"
                                                    id="end_other_rules"\xa                                                    name="end_other_rules"
                                                    :value="old('end_other_rules') ?? $cartRule->end_other_rules"\xa                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.end-of-other-rules')"
                                                    :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.end-of-other-rules')"\xa                                                >
                                                    <option
                                                        value="0"\xa                                                        {{ ! $selectedOption ? 'selected' : '' }}\xa                                                    >\xa                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.no')
                                                    </option>
\xa                                                    <option
                                                        value="1"
                                                        {{ $selectedOption ? 'selected' : '' }}\xa                                                    >
                                                        @lang('admin::app.marketing.promotions.cart-rules.edit.yes')
                                                    </option>
                                                </x-admin::form.control-group.control>\xa\xa                                                <x-admin::form.control-group.error control-name="end_other_rules" />\xa                                            </x-admin::form.control-group>\xa                                        </div>\xa                                    </div>\xa                                </div>\xa                            </div>\xa\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.actions.after') !!}
\xa                        </div>
\xa                        <!-- Right sub-component -->
                        <div class="flex flex-col gap-2 w-[360px] max-w-full max-sm:w-full">

                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.accordion.settings.before') !!}\xa
                            <!-- Settings -->\xa                            <x-admin::accordion>\xa                                <x-slot:header>
                                    <p class="p-2.5 text-gray-800 dark:text-white text-base font-semibold">
                                        @lang('admin::app.marketing.promotions.cart-rules.edit.settings')
                                    </p>\xa                                </x-slot>
\xa                                <x-slot:content>
                                    <x-admin::form.control-group>
                                        <x-admin::form.control-group.label>\xa                                            @lang('admin::app.marketing.promotions.cart-rules.edit.priority')
                                        </x-admin::form.control-group.label>\xa\xa                                        <x-admin::form.control-group.control
                                            type="text"\xa                                            id="sort_order"
                                            name="sort_order"
                                            :value="old('sort_order') ?? $cartRule->sort_order"\xa                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.priority')"
                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.priority')"\xa                                        />

                                        <x-admin::form.control-group.error control-name="sort_order" />
                                    </x-admin::form.control-group>\xa\xa                                    @php($selectedOptionIds = old('channels') ?? $cartRule->channels->pluck('id')->toArray())
                                    <!--Channel--> \xa                                    <div class="mb-2.5">\xa                                        <x-admin::form.control-group.label class="required">
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.channels')\xa                                        </x-admin::form.control-group.label>\xa
                                        @foreach(core()->getAllChannels() as $channel)\xa                                            <x-admin::form.control-group class="flex items-center gap-2.5 !mb-2">
                                                <x-admin::form.control-group.control
                                                    type="checkbox"
                                                    :id="'channel_' . '_' . $channel->id"
                                                    name="channels[]"
                                                    rules="required"\xa                                                    :value="$channel->id"\xa                                                    :for="'channel_' . '_' . $channel->id"
                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.channels')"\xa                                                    :checked="in_array($channel->id, $selectedOptionIds)"
                                                />\xa
                                                <label\xa                                                    class="text-xs text-gray-600 dark:text-gray-300 font-medium cursor-pointer"\xa                                                    for="{{ 'channel_' . '_' . $channel->id }}"
                                                >
                                                    {{ core()->getChannelName($channel) }}
                                                </label>
                                            </x-admin::form.control-group>\xa                                        @endforeach\xa\xa                                        <x-admin::form.control-group.error control-name="channels[]" />
                                    </div>\xa
                                    <!--Customer Groups -->
                                    <div class="mb-2.5">
                                        <x-admin::form.control-group.label class="required">\xa                                            @lang('admin::app.marketing.promotions.cart-rules.edit.customer-groups')
                                        </x-admin::form.control-group.label>\xa\xa                                        @php($selectedOptionIds = old('customer_groups') ?? $cartRule->customer_groups->pluck('id')->toArray())\xa\xa                                        @foreach(app('Webkul\Customer\Repositories\CustomerGroupRepository')->all() as $customerGroup)\xa                                            <x-admin::form.control-group class="flex items-center gap-2.5 !mb-2">\xa                                                <x-admin::form.control-group.control\xa                                                    type="checkbox"\xa                                                    :id="'customer_group_' . '_' . $customerGroup->id"
                                                    name="customer_groups[]"
                                                    rules="required"\xa                                                    :value="$customerGroup->id"\xa                                                    :for="'customer_group_' . '_' . $customerGroup->id"\xa                                                    :label="trans('admin::app.marketing.promotions.cart-rules.edit.customer-groups')"\xa                                                    :checked="in_array($customerGroup->id, $selectedOptionIds)"
                                                />\xa
                                                <label\xa                                                    class="text-xs text-gray-600 dark:text-gray-300 font-medium cursor-pointer"\xa                                                    for="{{ 'customer_group_' . '_' . $customerGroup->id }}"\xa                                                >\xa                                                    {{ $customerGroup->name }}
                                                </label>\xa\xa                                            </x-admin::form.control-group>
                                        @endforeach
\xa                                        <x-admin::form.control-group.error control-name="customer_groups[]" />
                                    </div>\xa\xa                                    <!-- Status -->\xa                                    <x-admin::form.control-group class="!mb-0">
                                        <x-admin::form.control-group.label>\xa                                            @lang('admin::app.marketing.promotions.cart-rules.edit.status')\xa                                        </x-admin::form.control-group.label>\xa\xa                                        <x-admin::form.control-group.control\xa                                            type="switch"
                                            name="status"\xa                                            :value="$cartRule->status"\xa                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.status')"
                                            :checked="(boolean) $cartRule->status"\xa                                        />\xa\xa                                        <x-admin::form.control-group.error control-name="status" />\xa                                    </x-admin::form.control-group>\xa                                </x-slot>
                            </x-admin::accordion>

                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.accordion.settings.after') !!}
\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.accordion.marketing_time.before') !!}

                            <!-- Marketing Time -->\xa                            <x-admin::accordion>
                                <x-slot:header>
                                    <p class="p-2.5 text-gray-800 dark:text-white text-base font-semibold">
                                        @lang('admin::app.marketing.promotions.cart-rules.edit.marketing-time')
                                    </p>\xa                                </x-slot>
\xa                                <x-slot:content>
                                    <x-admin::form.control-group>
                                        <x-admin::form.control-group.label>\xa                                            @lang('admin::app.marketing.promotions.cart-rules.edit.from')
                                        </x-admin::form.control-group.label>\xa
                                        <x-admin::form.control-group.control\xa                                            type="datetime"
                                            id="starts_from"\xa                                            name="starts_from"\xa                                            :value="old('starts_from') ?? $cartRule->starts_from"
                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.from')"\xa                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.from')"\xa                                        />
\xa                                        <x-admin::form.control-group.error control-name="starts_from" />
                                    </x-admin::form.control-group>
\xa                                    <x-admin::form.control-group class="!mb-0">
                                        <x-admin::form.control-group.label>
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.to')\xa                                        </x-admin::form.control-group.label>
\xa                                        <x-admin::form.control-group.control
                                            type="datetime"
                                            id="ends_till"\xa                                            name="ends_till"
                                            :value="old('ends_till') ?? $cartRule->ends_till"
                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.to')"
                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.to')"\xa                                        />
\xa                                        <x-admin::form.control-group.error control-name="ends_till" />\xa                                    </x-admin::form.control-group>
                                </x-slot>
                            </x-admin::accordion>\xa\xa                            {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.card.accordion.marketing_time.after') !!}
\xa                        </div>\xa                    </div>

                    {!! view_render_event('bagisto.admin.marketing.promotions.cart_rules.edit.edit_form_controls.after') !!}\xa\xa                </x-admin::form>\xa           </div>\xa        </script>
\xa        <!-- v cart rule edit form component -->
        <script type="module">\xa            app.component('v-cart-rule-edit-form', {\xa                template: '#v-cart-rule-edit-form-template',\xa\xa                data() {
                    return {
                        couponType: {{ old('coupon_type') ?? $cartRule->coupon_type }},\xa
                        useAutoGeneration: {{ old('use_auto_generation') ?? $cartRule->use_auto_generation }},\xa
                        conditionType: {{ old('condition_type') ?? $cartRule->condition_type }},\xa\xa                        conditions: @json($cartRule->conditions ?? []),
\xa                        actionType: "{{ old('action_type') ?? $cartRule->action_type }}",
                    }
                },\xa
                methods: {\xa                    addCondition() {\xa                        this.conditions.push({
                            'attribute': '',\xa                            'operator': '==',
                            'value': '',\xa                        });\xa                    },\xa
                    removeCondition(condition) {
                        let index = this.conditions.indexOf(condition);

                        this.conditions.splice(index, 1);
                    },\xa
                    onSubmit(e) {\xa                        this.$root.onSubmit(e);
                    },
\xa                    redirectBack(fallbackUrl) {\xa                        this.$root.redirectBack(fallbackUrl);
                    }
                },
            });
        </script>

        <!-- v catalog rule condition item form template -->
        <script\xa            type="text/x-template"\xa            id="v-cart-rule-condition-item-template"\xa        >
            <div class="flex gap-4 justify-between mt-4">
                <div class="flex gap-4 flex-1 max-sm:flex-wrap max-sm:flex-1">
                    <select\xa                        :name="['conditions[' + index + '][attribute]']"\xa                        class="custom-select flex w-1/3 min:w-1/3 h-10 py-2.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 dark:hover:border-gray-400 max-sm:flex-auto max-sm:max-w-full"\xa                        :id="['conditions[' + index + '][attribute]']"
                        v-model="condition.attribute"
                    >
                        <option value="">@lang('admin::app.marketing.promotions.cart-rules.edit.choose-condition-to-add')</option>

                        <optgroup\xa                            v-for='(conditionAttribute, index) in conditionAttributes'
                            :label="conditionAttribute.label"
                        >
                            <option\xa                                v-for='(childAttribute, index) in conditionAttribute.children'
                                :value="childAttribute.key"\xa                                :text="childAttribute.label"\xa                            >
                            </option>\xa                        </optgroup>
                    </select>\xa\xa                    <select\xa                        :name="['conditions[' + index + '][operator]']"\xa                        class="custom-select inline-flex gap-x-1 justify-between items-center h-10 w-full max-w-[196px] py-2.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 dark:hover:border-gray-400 max-sm:flex-auto max-sm:max-w-full"
                        v-model="condition.operator"
                        v-if="matchedAttribute"\xa                    >
                        <option\xa                            v-for='operator in conditionOperators[matchedAttribute.type]'\xa                            :value="operator.operator"
                            :text="operator.label"
                        >\xa                        </option>\xa                    </select>
\xa                    <div v-if="matchedAttribute">
                        <input\xa                            type="hidden"
                            :name="['conditions[' + index + '][attribute_type]']"\xa                            v-model="matchedAttribute.type"\xa                        >\xa
                        <div
                            v-if="matchedAttribute.key == 'product|category_ids'
                            || matchedAttribute.key == 'product|category_ids'
                            || matchedAttribute.key == 'product|parent::category_ids'"
                        >\xa                            <x-admin::tree.view
                                input-type="checkbox"\xa                                selection-type="individual"\xa                                ::name-field="'conditions[' + index + '][value]'"\xa                                value-field="id"
                                id-field="id"
                                ::items='matchedAttribute.options'
                                ::value='condition.value'\xa                                fallback-locale="{{ config('app.fallback_locale') }}"
                            />\xa                        </div>\xa
                        <div v-else>
                            <div\xa                                v-if="matchedAttribute.type == 'text'
                                    || matchedAttribute.type == 'price'
                                    || matchedAttribute.type == 'decimal'
                                    || matchedAttribute.type == 'integer'"
                            >
                                <input
                                    type="text"\xa                                    class="w-full py-2.5 px-3 border rounded-md text-sm text-gray-600 dark:text-gray-300 transition-all hover:border-gray-400 dark:hover:border-gray-400 focus:border-gray-400 dark:focus:border-gray-400 dark:bg-gray-900 dark:border-gray-800"\xa                                    :id="['conditions[' + index + '][value]']"
                                    :name="['conditions[' + index + '][value]']"
                                    v-model="condition.value"\xa                                />\xa                            </div>\xa\xa                            <div v-if="matchedAttribute.type == 'date'">\xa                                <x-admin::flat-picker.date class="!w-[140px]" ::allow-input="false">
                                    <input
                                        type="date"
                                        class="flex min-h-[39px] w-full rounded-md border px-3 py-2 text-sm text-gray-600 transition-all hover:border-gray-400 dark:hover:border-gray-400 dark:border-gray-800 dark:bg-gray-900 dark:text-gray-300"\xa                                        :name="['conditions[' + index + '][value]']"
                                        v-model="condition.value"
                                    />\xa                                </x-admin::flat-picker.date>\xa                            </div>\xa\xa                            <div v-if="matchedAttribute.type == 'datetime'">\xa                                <x-admin::flat-picker.date class="!w-[140px]" ::allow-input="false">\xa                                    <input\xa                                        type="datetime"\xa                                        class="flex min-h-[39px] w-full rounded-md border px-3 py-2 text-sm text-gray-600 transition-all hover:border-gray-400 dark:hover:border-gray-400 dark:border-gray-800 dark:bg-gray-900 dark:text-gray-300"\xa                                        :name="['conditions[' + index + '][value]']"
                                        v-model="condition.value"\xa                                    />
                                </x-admin::flat-picker.date>
                            </div>

                            <div v-if="matchedAttribute.type == 'boolean'">\xa                                <select
                                    :name="['conditions[' + index + '][value]']"
                                    class="custom-select inline-flex gap-x-1 justify-between items-center h-10 w-full min-w-[196px] py-2.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 dark:hover:border-gray-400 max-sm:flex-auto max-sm:max-w-full"
                                    v-model="condition.value"
                                >\xa                                    <option value="1">
                                        @lang('admin::app.marketing.promotions.cart-rules.edit.yes')\xa                                    </option>\xa\xa                                    <option value="0">
                                        @lang('admin::app.marketing.promotions.cart-rules.edit.no')
                                    </option>
                                </select>\xa                            </div>
\xa                            <div v-if="matchedAttribute.type == 'select' || matchedAttribute.type == 'radio'">\xa                                <select\xa                                    :name="['conditions[' + index + '][value]']"
                                    class="custom-select inline-flex gap-x-1 justify-between items-center h-10 w-full min-w-[196px] py-2.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 dark:hover:border-gray-400"\xa                                    v-if="matchedAttribute.key != 'catalog|state'"\xa                                    v-model="condition.value"
                                >\xa                                    <option\xa                                        v-for='option in matchedAttribute.options'
                                        :value="option.id"\xa                                        :text="option.admin_name"\xa                                    >\xa                                    </option>
                                </select>\xa\xa                                <select
                                    :name="['conditions[' + index + '][value]']"
                                    class="custom-select inline-flex gap-x-1 justify-between items-center max-h-10 w-full max-w-[196px] py-2.5 px-3 bg-white dark:bg-gray-900 border dark:border-gray-800 rounded-md text-sm text-gray-600 dark:text-gray-300 font-normal transition-all hover:border-gray-400 dark:hover:border-gray-400 max-sm:flex-auto max-sm:max-w-full"\xa                                    v-model="condition.value"
                                    v-else\xa                                >\xa                                    <optgroup\xa                                        v-for='option in matchedAttribute.options'
                                        :label="option.admin_name"
                                    >\xa                                        <option\xa                                            v-for='state in option.states'
                                            :value="state.code"
                                            :text="state.admin_name"
                                        >
                                        </option>
                                    </optgroup>\xa                                </select>\xa                            </div>\xa\xa                            <div v-if="matchedAttribute.type == 'multiselect' || matchedAttribute.type == 'checkbox'">\xa                                <select\xa                                    :name="['conditions[' + index + '][value][]']"
                                    class="inline-flex gap-x-1 justify-between items-center h-10 w-[196px] max-w-[196px] py-2 px-3 border rounded-md text-sm text-gray-600 dark:text-gray-300 transition-all hover:border-gray-400 dark:hover:border-gray-400 focus:border-gray-400 dark:focus:border-gray-400 dark:bg-gray-900 dark:border-gray-800"
                                    v-model="condition.value"\xa                                    multiple
                                >\xa                                    <option
                                        v-for='option in matchedAttribute.options'\xa                                        :value="option.id"
                                        :text="option.admin_name"
                                    >
                                    </option>\xa                                </select>
                            </div>\xa                        </div>\xa                    </div>
                </div>
\xa                <span
                    class="icon-delete max-h-9 max-w-9 text-2xl p-1.5 rounded-md cursor-pointer transition-all hover:bg-gray-100 dark:hover:bg-gray-950 max-sm:place-self-center"
                    @click="removeCondition"\xa                >\xa                </span>\xa            </div>
        </script>
\xa        <!-- v catalog rule condition item component -->
        <script type="module">
            app.component('v-cart-rule-condition-item', {
                template: "#v-cart-rule-condition-item-template",\xa
                props: ['index', 'condition'],
\xa                data() {\xa                    return {\xa                        conditionAttributes: @json(app('\Webkul\CartRule\Repositories\CartRuleRepository')->getConditionAttributes()),\xa
                        attributeTypeIndexes: {
                            'cart': 0,\xa
                            'cart_item': 1,\xa
                            'product': 2
                        },

                        conditionOperators: {\xa                            'price': [{
                                'operator': '==',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"
                            }, {
                                'operator': '!=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"\xa                            }, {
                                'operator': '>=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-greater-than')"
                            }, {\xa                                'operator': '<=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-less-than')"
                            }, {\xa                                'operator': '>',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.greater-than')"\xa                            }, {\xa                                'operator': '<',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.less-than')"
                            }],
                            'decimal': [{
                                'operator': '==',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"
                            }, {
                                'operator': '!=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"
                            }, {\xa                                'operator': '>=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-greater-than')"\xa                            }, {
                                'operator': '<=',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-less-than')"
                            }, {\xa                                'operator': '>',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.greater-than')"
                            }, {
                                'operator': '<',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.less-than')"\xa                            }],
                            'integer': [{
                                'operator': '==',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"
                            }, {\xa                                'operator': '!=',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"\xa                            }, {
                                'operator': '>=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-greater-than')"
                            }, {\xa                                'operator': '<=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-less-than')"
                            }, {\xa                                'operator': '>',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.greater-than')"\xa                            }, {
                                'operator': '<',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.less-than')"\xa                            }],
                            'text': [{
                                'operator': '==',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"\xa                            }, {\xa                                'operator': '!=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"\xa                            }, {\xa                                'operator': '{}',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.contain')"\xa                            }, {\xa                                'operator': '!{}',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.does-not-contain')"\xa                            }],
                            'boolean': [{\xa                                'operator': '==',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"\xa                            }, {\xa                                'operator': '!=',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"\xa                            }],\xa                            'date': [{\xa                                'operator': '==',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"\xa                            }, {\xa                                'operator': '!=',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"
                            }, {\xa                                'operator': '>=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-greater-than')"
                            }, {
                                'operator': '<=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-less-than')"\xa                            }, {\xa                                'operator': '>',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.greater-than')"\xa                            }, {
                                'operator': '<',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.less-than')"
                            }],\xa                            'datetime': [{\xa                                'operator': '==',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"\xa                            }, {\xa                                'operator': '!=',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"
                            }, {\xa                                'operator': '>=',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-greater-than')"
                            }, {\xa                                'operator': '<=',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.equals-or-less-than')"
                            }, {\xa                                'operator': '>',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.greater-than')"\xa                            }, {
                                'operator': '<',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.less-than')"\xa                            }],\xa                            'select': [{\xa                                'operator': '==',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"
                            }, {\xa                                'operator': '!=',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"\xa                            }],
                            'radio': [{
                                'operator': '==',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-equal-to')"
                            }, {\xa                                'operator': '!=',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.is-not-equal-to')"\xa                            }],\xa                            'multiselect': [{\xa                                'operator': '{}',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.contains')"\xa                            }, {\xa                                'operator': '!{}',\xa                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.does-not-contain')"
                            }],
                            'checkbox': [{\xa                                'operator': '{}',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.contains')"
                            }, {
                                'operator': '!{}',
                                'label': "@lang('admin::app.marketing.promotions.cart-rules.edit.does-not-contain')"
                            }]
                        },\xa                    }\xa                },\xa
                computed: {
                    matchedAttribute() {\xa                        if (this.condition.attribute == '')\xa                            return;
\xa                        let self = this;
\xa                        let attributeIndex = this.attributeTypeIndexes[this.condition.attribute.split("|")[0]];\xa\xa                        let matchedAttribute = this.conditionAttributes[attributeIndex]['children'].filter(function (attribute) {
                            return attribute.key == self.condition.attribute;\xa                        });\xa
                        if (matchedAttribute[0]['type'] == 'multiselect' || matchedAttribute[0]['type'] == 'checkbox') {\xa\xa                            this.condition.value = this.condition.value == '' && this.condition.value != undefined\xa                                    ? []\xa                                    : Array.isArray(this.condition.value) ? this.condition.value : [];
                        }\xa\xa                        return matchedAttribute[0];\xa                    },\xa                },\xa\xa                methods: {\xa                    removeCondition() {
                        this.$emit('onRemoveCondition', this.condition)\xa                    },
                },\xa            });\xa        </script>\xa
        <!-- v create coupon form -->\xa        <script\xa            type="text/x-template"
            id="v-create-coupon-form-template"
        >
            <div class="p-4 bg-white dark:bg-gray-900 rounded box-shadow">
                <div class="grid gap-1.5">\xa                    <p class="mb-4 text-base text-gray-800 dark:text-white font-semibold">\xa                        @lang('admin::app.marketing.promotions.cart-rules.edit.coupon-code')
                    </p>
\xa                    <x-admin::form
                        v-slot="{ meta, errors, handleSubmit }"
                        as="div"
                    >\xa                        <form @submit="handleSubmit($event, store)">
                            <div class="flex gap-4  max-sm:flex-wrap">\xa                                <div class="w-full mb-2.5">
                                    <x-admin::form.control-group>
                                        <x-admin::form.control-group.label class="required">
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.coupon-qty')\xa                                        </x-admin::form.control-group.label>
\xa                                        <x-admin::form.control-group.control
                                            type="text"
                                            id="coupon_qty"
                                            name="coupon_qty"
                                            rules="required|min_value:1"
                                            v-model="coupon_format.coupon_qty"
                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.coupon-qty')"\xa                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.coupon-qty')"
                                        />

                                        <x-admin::form.control-group.error control-name="coupon_qty" />
                                    </x-admin::form.control-group>
                                </div>\xa\xa                                <div class="w-full mb-2.5">
                                    <x-admin::form.control-group>\xa                                        <x-admin::form.control-group.label class="required">
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.coupon-length')\xa                                        </x-admin::form.control-group.label>
\xa                                        <x-admin::form.control-group.control
                                            type="text"
                                            name="code_length"\xa                                            id="code_length"
                                            rules="required|min_value:1"
                                            v-model="coupon_format.code_length"
                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.coupon-length')"\xa                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.coupon-length')"
                                        />\xa\xa                                        <x-admin::form.control-group.error control-name="code_length" />
                                    </x-admin::form.control-group>
                                </div>\xa                            </div>
\xa                            <div class="flex gap-4 max-sm:flex-wrap">\xa                                <div class="w-full mb-2.5">
                                    <x-admin::form.control-group>
                                        <x-admin::form.control-group.label class="required">
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.code-format')
                                        </x-admin::form.control-group.label>\xa
                                        <x-admin::form.control-group.control\xa                                            type="select"\xa                                            id="code_format"
                                            class="ltr:pr-10 rtl:pl-10"\xa                                            name="code_format"\xa                                            rules="required"\xa                                            v-model="coupon_format.code_format"\xa                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.code-format')"
                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.code-format')"
                                        >\xa                                            <option\xa                                                value="alphanumeric"
                                            >
                                                @lang('admin::app.marketing.promotions.cart-rules.edit.alphanumeric')
                                            </option>
\xa                                            <option
                                                value="alphabetical"\xa                                            >
                                                @lang('admin::app.marketing.promotions.cart-rules.edit.alphabetical')
                                            </option>

                                            <option\xa                                                value="numeric"
                                            >
                                                @lang('admin::app.marketing.promotions.cart-rules.edit.numeric')\xa                                            </option>
                                        </x-admin::form.control-group.control>\xa\xa                                        <x-admin::form.control-group.error control-name="code_format" />\xa                                    </x-admin::form.control-group>

                                    <x-admin::form.control-group>\xa                                        <x-admin::form.control-group.label>
                                            @lang('admin::app.marketing.promotions.cart-rules.edit.code-prefix')\xa                                        </x-admin::form.control-group.label>

                                        <x-admin::form.control-group.control\xa                                            type="text"\xa                                            id="code_prefix"\xa                                            name="code_prefix"
                                            v-model="coupon_format.code_prefix"\xa                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.code-prefix')"
                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.code-prefix')"\xa                                        />\xa\xa                                        <x-admin::form.control-group.error control-name="code_prefix" />
                                    </x-admin::form.control-group>
                                </div>

                                <div class="w-full mb-2.5">
                                    <x-admin::form.control-group>\xa                                        <x-admin::form.control-group.label>\xa                                            @lang('admin::app.marketing.promotions.cart-rules.edit.code-suffix')
                                        </x-admin::form.control-group.label>\xa
                                        <x-admin::form.control-group.control
                                            type="text"
                                            id="code_suffix"\xa                                            name="code_suffix"
                                            v-model="coupon_format.code_suffix"\xa                                            :label="trans('admin::app.marketing.promotions.cart-rules.edit.code-suffix')"\xa                                            :placeholder="trans('admin::app.marketing.promotions.cart-rules.edit.code-suffix')"\xa                                        />\xa
                                        <x-admin::form.control-group.error control-name="code_suffix" />\xa                                    </x-admin::form.control-group>
                                </div>\xa                            </div>

                            <button\xa                                type="submit"\xa                                class="primary-button"\xa                            >\xa                                @lang('admin::app.marketing.promotions.cart-rules.edit.generate')\xa                            </button>\xa                        </form>\xa                    </x-admin::form>

                    <!-- Coupons Export Modal -->
                    <div class="flex justify-between items-center">\xa                        <div class="flex gap-x-2.5 items-center">\xa                            <p class="text-xl text-gray-800 dark:text-white font-bold"></p>\xa                        </div>\xa\xa                        <div> <!-- Empty div to push content to the right end --> </div>

                        <div class="flex gap-x-2.5 items-center">
                            <x-admin::datagrid.export src="{{ route('admin.marketing.promotions.cart_rules.coupons.index', $cartRule->id) }}" />
                        </div>\xa                    </div>\xa\xa                    <!--Coupon datagrid -->
                    <x-admin::datagrid :src="route('admin.marketing.promotions.cart_rules.coupons.index', $cartRule->id)" />
                </div>
            </div>
        </script>\xa
        <script type="module">
            app.component('v-create-coupon-form', {
                template: '#v-create-coupon-form-template',
\xa                data() {\xa                    return {
                        coupon_format: {
                            code_length: 12,\xa\xa                            code_format: 'alphanumeric',
\xa                            coupon_qty: '',\xa\xa                            code_prefix: '',\xa
                            code_suffix: ''\xa                        }
                    };\xa                },

                methods: {\xa                    store(params, { resetForm, setErrors }) {
                        this.$axios.post('{{ route('admin.marketing.promotions.cart_rules.coupons.store', $cartRule->id) }}', params)
                            .then((response) => {\xa                                window.location.reload();
\xa                                this.$emitter.emit('add-flash', { type: 'success', message: response.data.message });\xa\xa                                resetForm();
                            })\xa                            .catch((error) => {
                                if (error.response.status == 422) {\xa                                    setErrors(error.response.data.errors);
                                }
                            });
                    },\xa                },
            });\xa        </script>
    @endPushOnce\xa</x-admin::layouts>\xa"; ?>

Did this file decode correctly?

Original Code

<?php
 echo "\x3c\170\x2d\x61\144\x6d\x69\x6e\x3a\x3a\x6c\141\x79\x6f\165\x74\x73\76\12\x20\x20\40\x20\x3c\x21\55\x2d\40\124\151\x74\154\145\x20\157\x66\x20\164\150\145\40\x70\x61\147\x65\40\x2d\x2d\76\xa\40\x20\40\x20\x3c\x78\55\163\x6c\x6f\164\72\164\151\164\154\145\x3e\12\x20\x20\x20\x20\40\40\40\40\100\154\141\x6e\147\x28\47\141\x64\x6d\151\156\72\x3a\141\160\160\56\x6d\x61\x72\x6b\x65\x74\151\x6e\x67\x2e\160\x72\157\155\x6f\x74\x69\157\156\x73\x2e\x63\141\162\164\x2d\162\x75\x6c\x65\163\56\x65\144\x69\x74\x2e\164\x69\164\154\x65\47\51\12\40\40\x20\40\x3c\57\x78\x2d\163\154\x6f\164\x3e\xa\12\40\x20\x20\40\173\x21\41\40\x76\x69\x65\x77\x5f\162\x65\156\144\145\162\137\x65\166\x65\156\164\50\47\x62\141\147\x69\x73\164\157\56\141\144\x6d\x69\x6e\56\155\x61\x72\x6b\x65\164\151\156\147\56\x70\162\157\x6d\157\164\x69\157\x6e\163\x2e\x63\141\162\x74\137\x72\x75\x6c\145\x73\x2e\145\x64\151\x74\56\x62\145\146\157\x72\145\47\x29\x20\41\41\x7d\12\12\40\x20\40\40\x3c\x76\55\143\x61\x72\x74\x2d\x72\165\154\145\x2d\145\144\x69\164\x2d\x66\x6f\x72\x6d\x3e\74\x2f\x76\x2d\143\x61\162\164\55\x72\165\154\145\55\145\144\x69\164\x2d\146\157\162\x6d\x3e\12\12\40\x20\40\x20\173\x21\x21\40\166\151\x65\167\137\x72\x65\156\x64\x65\x72\137\145\166\145\156\x74\x28\x27\142\x61\147\151\x73\164\x6f\56\x61\x64\155\151\x6e\x2e\x6d\141\x72\153\145\164\151\x6e\x67\56\160\162\x6f\x6d\x6f\x74\x69\157\x6e\x73\56\x63\141\x72\164\x5f\x72\x75\x6c\145\163\56\x65\x64\x69\x74\x2e\x61\146\164\145\162\x27\51\40\x21\x21\x7d\12\12\40\40\x20\40\x40\x70\165\x73\150\x4f\x6e\x63\145\x28\x27\x73\143\x72\151\160\x74\163\x27\51\xa\40\40\x20\40\40\x20\40\40\74\41\55\x2d\40\x76\x20\x63\x61\x72\x74\x20\x72\165\x6c\x65\163\40\145\x64\151\164\40\146\x6f\162\155\x20\164\145\x6d\160\x6c\141\164\145\x20\55\x2d\x3e\12\40\40\x20\x20\40\40\40\x20\x3c\163\143\162\x69\160\164\12\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\164\x79\160\145\x3d\x22\164\x65\170\x74\57\170\55\x74\x65\x6d\x70\x6c\141\164\x65\x22\xa\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\151\144\75\42\x76\x2d\x63\x61\x72\164\x2d\x72\165\x6c\145\x2d\145\x64\x69\x74\x2d\146\x6f\x72\x6d\x2d\164\145\155\x70\154\141\x74\145\x22\12\x20\40\x20\x20\x20\x20\x20\x20\x3e\12\40\x20\40\40\x20\40\x20\40\x20\40\40\40\74\144\151\x76\76\xa\40\x20\40\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x3c\x78\x2d\x61\x64\x6d\151\x6e\x3a\x3a\x66\157\x72\x6d\12\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x3a\141\143\164\x69\x6f\156\x3d\42\x72\157\165\x74\x65\50\x27\x61\x64\x6d\x69\156\x2e\x6d\141\162\x6b\145\x74\151\156\x67\x2e\160\162\x6f\x6d\157\x74\151\x6f\156\163\56\x63\x61\x72\164\x5f\x72\165\x6c\x65\x73\56\x75\160\144\141\x74\145\x27\54\x20\44\143\141\x72\x74\122\x75\154\x65\55\x3e\x69\x64\51\42\xa\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x6d\145\x74\150\157\144\x3d\42\x50\x55\x54\x22\xa\40\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\145\x6e\143\164\x79\x70\x65\x3d\x22\x6d\x75\x6c\x74\x69\160\141\162\164\57\x66\x6f\162\x6d\55\x64\x61\164\141\42\xa\40\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\151\144\75\42\165\x70\x64\141\164\145\55\143\141\162\164\55\x72\165\x6c\x65\x22\xa\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\76\xa\12\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\x7b\x21\41\40\x76\151\x65\167\x5f\x72\x65\x6e\x64\x65\x72\x5f\x65\166\145\x6e\164\50\47\x62\x61\x67\x69\x73\164\157\56\x61\144\x6d\x69\156\56\x6d\141\x72\x6b\145\164\151\x6e\x67\56\x70\x72\x6f\155\x6f\164\151\x6f\156\x73\56\143\141\x72\164\137\162\x75\x6c\x65\163\56\x65\x64\x69\x74\56\145\x64\151\164\x5f\x66\x6f\x72\x6d\x5f\143\157\x6e\x74\x72\x6f\x6c\163\x2e\142\x65\x66\x6f\x72\x65\x27\x29\x20\x21\x21\175\12\12\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\74\x64\151\166\x20\143\x6c\141\x73\x73\75\x22\x66\154\x65\x78\x20\147\x61\x70\55\x34\x20\152\x75\163\x74\x69\146\171\55\142\x65\164\167\x65\145\156\40\151\x74\x65\x6d\x73\x2d\x63\145\x6e\x74\x65\x72\40\x6d\164\55\63\x20\155\141\x78\x2d\163\155\x3a\146\154\x65\x78\x2d\167\x72\x61\160\42\76\xa\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\x20\74\x70\x20\x63\154\x61\163\x73\x3d\x22\164\145\x78\x74\x2d\170\x6c\40\x74\x65\170\x74\x2d\x67\162\x61\x79\55\70\x30\x30\40\x64\x61\x72\153\x3a\x74\x65\170\x74\x2d\167\150\151\x74\145\40\146\157\156\164\x2d\142\x6f\154\x64\42\x3e\12\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\40\40\40\x20\x20\40\x20\40\100\154\x61\x6e\x67\x28\47\x61\144\x6d\151\156\x3a\x3a\141\160\x70\x2e\x6d\141\x72\153\x65\x74\x69\156\147\x2e\x70\162\157\x6d\157\164\x69\157\156\163\x2e\x63\x61\x72\x74\x2d\162\165\154\145\x73\x2e\145\x64\151\164\x2e\164\151\x74\154\x65\x27\x29\12\40\40\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\74\57\160\x3e\12\xa\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x3c\144\151\166\40\x63\154\x61\163\163\75\42\146\x6c\x65\170\40\147\x61\x70\x2d\x78\55\62\56\65\40\151\x74\x65\155\x73\55\x63\145\156\x74\x65\x72\42\x3e\12\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\x3c\x21\x2d\x2d\x20\102\x61\x63\x6b\x20\102\165\x74\164\x6f\x6e\x20\55\55\76\xa\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\74\x61\12\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\150\162\x65\146\x3d\42\173\x7b\40\162\157\165\x74\145\50\x27\x61\144\155\151\156\56\155\141\162\153\145\x74\x69\x6e\147\56\160\x72\157\x6d\x6f\x74\151\157\x6e\x73\56\x63\141\x72\x74\x5f\x72\165\154\x65\x73\x2e\x69\156\x64\145\x78\x27\51\40\175\x7d\42\xa\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\143\x6c\141\163\163\x3d\42\164\162\x61\x6e\163\160\x61\x72\x65\156\164\55\x62\x75\164\x74\x6f\156\x20\x68\x6f\166\x65\x72\72\142\x67\55\147\162\x61\x79\55\62\60\x30\x20\x64\x61\x72\x6b\x3a\x68\157\166\x65\x72\72\x62\147\x2d\147\162\141\171\55\x38\x30\x30\x20\x64\141\162\x6b\x3a\164\145\170\164\x2d\167\x68\x69\x74\145\42\xa\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x3e\12\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\100\154\141\x6e\x67\x28\x27\141\144\155\x69\156\72\72\141\160\x70\x2e\155\x61\x72\x6b\145\x74\x69\156\x67\56\160\x72\x6f\x6d\x6f\164\x69\x6f\156\x73\x2e\143\x61\162\x74\x2d\162\165\154\145\163\x2e\x65\144\x69\x74\56\x62\x61\143\x6b\55\x62\x74\156\47\51\xa\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\40\x3c\57\x61\x3e\12\12\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\x3c\x21\55\55\40\x53\141\166\x65\x20\x62\165\164\157\156\x20\x2d\55\x3e\12\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\74\142\165\164\x74\x6f\x6e\12\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\164\x79\160\145\75\x22\x62\x75\x74\164\157\156\x22\12\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x63\x6c\x61\x73\x73\x3d\42\x70\162\x69\155\141\x72\171\55\142\x75\164\x74\157\x6e\x22\12\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\157\156\x63\154\151\143\153\x3d\x22\144\x6f\x63\165\155\x65\x6e\164\56\x67\145\164\105\x6c\145\x6d\x65\x6e\164\102\x79\x49\144\x28\x27\165\x70\144\x61\164\145\55\143\x61\x72\164\55\162\x75\x6c\x65\47\x29\x2e\163\x75\142\155\151\x74\50\x29\42\12\40\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\76\12\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\x40\x6c\141\156\x67\x28\x27\141\x64\155\151\x6e\x3a\x3a\141\160\160\56\x6d\141\x72\x6b\145\164\151\156\x67\x2e\160\162\157\155\157\164\x69\x6f\156\163\x2e\x63\141\162\x74\x2d\x72\x75\154\x65\163\56\145\x64\x69\x74\56\x73\141\x76\x65\55\142\x74\x6e\x27\51\12\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x3c\57\x62\x75\x74\x74\157\x6e\76\12\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x3c\57\x64\x69\166\76\xa\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\x3c\x2f\x64\151\x76\76\12\xa\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x3c\x21\x2d\55\40\x62\157\144\x79\40\143\157\x6e\x74\x65\156\164\40\x20\x2d\55\76\xa\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x3c\144\151\x76\40\x63\154\x61\163\163\75\42\x66\x6c\145\x78\40\x67\x61\x70\x2d\62\x2e\x35\x20\155\x74\55\63\x2e\x35\40\x6d\141\170\x2d\x78\154\x3a\x66\154\x65\170\x2d\x77\x72\141\160\42\x3e\12\40\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x3c\x21\55\x2d\40\114\x65\x66\x74\x20\x73\165\142\55\143\157\x6d\160\157\156\x65\x6e\164\x20\x2d\55\x3e\12\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x3c\144\151\x76\x20\143\x6c\141\x73\163\x3d\42\146\x6c\x65\170\40\x66\x6c\145\x78\55\x63\x6f\154\x20\x67\x61\x70\55\62\40\146\154\x65\x78\55\x31\40\x6d\x61\x78\55\x78\154\72\146\x6c\x65\170\55\x61\165\x74\157\x22\76\xa\xa\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\173\x21\41\x20\166\x69\x65\x77\137\x72\145\156\x64\145\162\x5f\145\x76\145\x6e\164\x28\x27\x62\141\147\x69\x73\x74\x6f\x2e\x61\x64\155\x69\x6e\x2e\x6d\141\x72\x6b\x65\x74\x69\x6e\x67\56\160\162\x6f\x6d\157\x74\151\157\156\x73\x2e\x63\141\x72\164\x5f\x72\x75\154\x65\163\56\x65\144\151\x74\56\143\141\162\x64\56\147\145\156\x65\162\x61\x6c\x2e\x62\145\146\157\162\x65\47\x29\40\41\41\175\xa\12\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\74\x21\55\x2d\x20\107\x65\x6e\x65\x72\141\x6c\40\x2d\x2d\x3e\12\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x3c\144\151\x76\x20\143\x6c\x61\163\163\x3d\x22\160\55\x34\40\x62\x67\55\x77\150\x69\x74\145\x20\144\141\x72\x6b\72\142\147\x2d\x67\x72\x61\x79\55\x39\x30\60\x20\162\x6f\165\156\x64\x65\144\x20\142\157\170\x2d\163\x68\x61\144\157\x77\42\76\xa\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\74\x70\40\x63\x6c\141\163\x73\x3d\x22\40\x6d\142\x2d\64\40\x74\145\x78\x74\55\142\141\163\145\x20\x74\145\x78\164\55\147\162\x61\171\x2d\x38\60\60\40\x64\141\x72\153\x3a\164\x65\x78\x74\x2d\x77\x68\151\164\145\x20\x66\x6f\x6e\164\55\x73\145\155\x69\x62\x6f\x6c\144\x22\x3e\12\x20\40\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\x20\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x40\154\141\156\x67\x28\x27\141\144\x6d\151\156\x3a\x3a\x61\x70\x70\x2e\155\141\x72\x6b\145\164\x69\156\147\56\x70\162\157\x6d\x6f\x74\151\x6f\156\x73\x2e\143\x61\162\164\x2d\x72\165\x6c\145\x73\56\145\x64\151\164\x2e\147\x65\156\145\x72\x61\x6c\x27\51\xa\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\74\57\160\x3e\12\12\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x3c\x78\x2d\141\x64\x6d\x69\156\72\72\146\157\x72\x6d\56\143\157\x6e\164\x72\x6f\x6c\x2d\x67\162\157\165\160\x3e\12\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x3c\170\x2d\141\144\155\151\156\x3a\72\146\x6f\x72\155\56\143\157\x6e\164\162\157\x6c\x2d\x67\x72\157\x75\x70\56\154\141\142\x65\x6c\40\143\154\141\163\x73\75\42\162\145\x71\165\151\162\145\144\x22\x3e\12\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\x40\x6c\x61\156\147\50\47\x61\x64\155\151\156\72\x3a\x61\x70\x70\56\155\141\162\x6b\x65\164\151\x6e\147\x2e\160\162\157\155\157\x74\151\157\156\163\x2e\x63\141\162\164\55\162\x75\154\x65\x73\56\x65\x64\x69\164\56\x6e\141\x6d\x65\47\x29\xa\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x3c\57\x78\55\141\x64\x6d\x69\156\x3a\72\x66\157\x72\x6d\56\143\x6f\156\164\162\x6f\x6c\55\x67\162\x6f\x75\160\x2e\154\x61\x62\x65\x6c\x3e\xa\12\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\74\x78\55\x61\144\155\x69\x6e\x3a\x3a\x66\x6f\162\155\56\143\x6f\x6e\164\x72\157\x6c\55\x67\x72\x6f\x75\160\x2e\x63\157\156\x74\x72\157\154\12\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\x74\171\160\x65\75\x22\164\x65\x78\164\42\12\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x69\x64\75\42\156\141\x6d\x65\42\xa\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\156\141\x6d\145\x3d\x22\156\141\155\x65\x22\12\40\40\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\40\40\40\162\165\154\x65\x73\x3d\x22\162\145\161\165\151\x72\145\x64\x22\xa\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x3a\x76\141\154\165\145\75\42\157\154\144\50\47\156\141\155\145\x27\x29\x20\x3f\77\x20\x24\143\x61\x72\x74\122\165\154\x65\55\76\x6e\x61\155\x65\42\xa\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\72\154\x61\142\145\x6c\75\x22\164\162\x61\156\x73\x28\47\141\x64\x6d\x69\x6e\x3a\72\x61\160\x70\x2e\x6d\x61\x72\x6b\x65\x74\x69\x6e\x67\56\160\162\x6f\x6d\x6f\x74\151\x6f\x6e\163\56\143\141\x72\x74\55\162\x75\154\x65\x73\x2e\x65\144\x69\x74\x2e\x6e\x61\x6d\x65\x27\x29\x22\12\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\72\x70\x6c\141\143\x65\150\x6f\154\144\x65\162\x3d\42\x74\162\141\156\163\x28\47\141\x64\155\x69\156\x3a\x3a\141\160\x70\56\x6d\141\x72\x6b\x65\x74\151\x6e\x67\56\x70\162\157\x6d\x6f\x74\151\x6f\x6e\x73\x2e\x63\141\162\164\55\x72\165\x6c\x65\x73\x2e\x65\x64\151\x74\x2e\x6e\141\x6d\145\x27\x29\42\xa\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\x2f\x3e\12\12\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\74\170\x2d\141\144\155\151\x6e\x3a\x3a\x66\157\x72\x6d\56\143\x6f\156\x74\x72\x6f\154\x2d\147\162\x6f\165\160\x2e\x65\x72\162\157\x72\40\x63\x6f\x6e\164\162\x6f\154\x2d\156\141\x6d\x65\75\x22\x6e\141\155\x65\x22\x20\x2f\76\12\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x3c\57\170\x2d\x61\144\155\151\156\x3a\72\146\157\162\155\x2e\143\157\x6e\x74\x72\x6f\154\x2d\x67\x72\157\x75\160\76\12\xa\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\74\170\55\x61\x64\155\x69\x6e\x3a\72\146\x6f\162\x6d\x2e\x63\x6f\x6e\164\162\x6f\154\x2d\147\x72\x6f\x75\x70\76\xa\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x3c\170\55\x61\144\155\x69\156\x3a\72\146\157\162\x6d\x2e\143\x6f\156\164\x72\157\154\55\x67\x72\x6f\165\x70\x2e\154\141\x62\145\154\76\xa\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\100\154\141\156\x67\x28\x27\141\144\155\151\156\72\72\141\160\160\x2e\x6d\141\162\153\145\164\151\156\147\56\160\x72\x6f\155\157\x74\x69\157\156\x73\x2e\x63\x61\x72\x74\55\x72\x75\x6c\x65\163\56\x65\x64\151\x74\56\144\145\x73\143\x72\x69\160\x74\151\157\x6e\x27\x29\12\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\74\x2f\170\55\141\x64\155\151\x6e\x3a\72\146\x6f\162\x6d\x2e\x63\157\x6e\x74\162\157\154\55\x67\162\157\x75\x70\56\x6c\x61\142\145\x6c\76\xa\12\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x3c\170\55\141\x64\x6d\x69\x6e\72\72\146\x6f\x72\x6d\x2e\143\157\x6e\x74\x72\x6f\154\55\147\162\157\x75\x70\56\143\157\x6e\164\x72\157\x6c\12\40\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\164\x79\160\x65\75\42\164\145\170\x74\141\162\x65\141\42\xa\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\x63\154\141\163\x73\x3d\x22\164\145\170\164\x2d\x67\162\x61\171\55\x36\x30\60\x20\x64\x61\162\x6b\x3a\x74\145\x78\x74\x2d\x67\162\x61\171\x2d\63\x30\60\x22\xa\x20\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\40\40\40\151\x64\x3d\42\144\145\163\143\x72\151\x70\164\151\157\x6e\x22\xa\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x6e\x61\x6d\x65\75\x22\x64\x65\163\143\162\x69\x70\x74\x69\157\x6e\42\12\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\72\x76\141\154\165\x65\75\x22\157\x6c\x64\x28\47\x64\145\x73\143\x72\x69\x70\x74\151\157\x6e\x27\51\x20\77\77\40\44\143\141\162\164\x52\165\x6c\145\55\76\144\145\x73\x63\162\151\160\x74\151\x6f\x6e\x22\xa\40\40\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\x3a\x6c\141\x62\x65\154\x3d\42\164\x72\141\156\163\50\47\141\144\x6d\x69\156\72\72\141\x70\x70\56\x6d\x61\162\153\145\164\x69\x6e\x67\x2e\x70\x72\157\x6d\x6f\x74\x69\x6f\x6e\163\56\x63\x61\162\164\55\x72\x75\x6c\145\x73\56\x65\x64\x69\164\x2e\144\x65\x73\143\x72\x69\x70\164\x69\x6f\156\47\51\x22\xa\x20\40\40\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x3a\x70\154\x61\x63\x65\x68\x6f\154\144\x65\162\x3d\x22\x74\162\141\x6e\x73\50\x27\x61\x64\155\151\x6e\x3a\x3a\x61\160\x70\x2e\155\141\x72\153\145\x74\151\156\x67\56\x70\x72\x6f\x6d\157\164\151\x6f\x6e\163\56\143\141\x72\164\x2d\x72\x75\154\x65\x73\x2e\x65\144\151\x74\56\x64\x65\x73\x63\162\x69\160\x74\151\x6f\156\47\x29\42\12\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\40\x2f\x3e\xa\12\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\40\x3c\x78\x2d\141\144\x6d\151\x6e\x3a\72\x66\x6f\x72\155\56\143\x6f\156\164\162\157\x6c\55\147\162\157\x75\160\x2e\145\162\x72\157\162\40\143\x6f\x6e\164\162\157\x6c\x2d\x6e\x61\155\x65\75\x22\x64\x65\x73\x63\162\151\160\x74\x69\x6f\156\42\40\x2f\76\xa\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\74\x2f\x78\55\x61\144\x6d\x69\156\72\72\x66\157\x72\x6d\56\143\x6f\x6e\x74\x72\157\154\x2d\x67\x72\x6f\x75\x70\x3e\xa\xa\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\74\x78\55\x61\x64\x6d\x69\156\72\72\x66\x6f\162\x6d\x2e\143\157\x6e\x74\162\157\154\x2d\147\162\157\x75\x70\x3e\12\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\x20\40\40\40\40\40\40\40\x3c\x78\55\141\x64\155\x69\156\x3a\x3a\x66\157\x72\155\x2e\x63\157\x6e\x74\x72\x6f\x6c\x2d\147\162\157\165\x70\56\154\141\142\145\x6c\40\143\x6c\x61\x73\x73\75\x22\x72\145\161\x75\151\x72\x65\144\42\x3e\xa\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\100\154\x61\156\147\50\x27\x61\144\x6d\x69\156\x3a\x3a\x61\160\160\56\x6d\x61\162\x6b\x65\x74\x69\156\147\56\x70\162\157\155\157\164\151\157\x6e\x73\x2e\143\x61\162\164\55\x72\165\x6c\x65\163\x2e\x65\x64\151\x74\x2e\143\157\165\160\x6f\156\55\164\171\x70\x65\x27\51\12\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\74\x2f\170\55\x61\144\155\x69\156\72\72\x66\157\x72\x6d\x2e\x63\157\x6e\x74\x72\157\154\x2d\147\162\157\165\x70\56\154\x61\x62\145\x6c\76\xa\xa\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\x3c\170\x2d\141\144\x6d\151\x6e\x3a\x3a\146\157\x72\x6d\x2e\143\x6f\156\164\x72\157\154\55\147\x72\157\165\160\56\143\x6f\x6e\164\x72\157\x6c\12\x20\x20\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x74\x79\x70\x65\x3d\x22\x73\x65\154\x65\143\x74\42\xa\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\151\144\75\x22\x63\157\165\x70\x6f\156\137\164\x79\160\145\x22\xa\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x6e\141\x6d\145\75\42\x63\x6f\165\x70\157\156\137\x74\x79\160\145\42\12\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\162\165\154\x65\163\x3d\x22\x72\145\x71\x75\151\x72\145\x64\x22\12\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x76\55\155\x6f\144\145\x6c\x3d\42\x63\x6f\165\x70\x6f\x6e\x54\x79\x70\145\x22\xa\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x3a\154\x61\x62\145\154\75\42\164\x72\x61\156\x73\50\x27\x61\x64\x6d\x69\156\x3a\72\x61\160\160\x2e\155\141\x72\153\145\x74\x69\156\x67\56\x70\162\x6f\x6d\x6f\x74\151\x6f\156\x73\56\x63\x61\x72\164\x2d\162\165\154\145\x73\56\x65\144\151\164\56\x63\157\x75\x70\x6f\156\x2d\164\171\160\145\47\51\x22\xa\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\x3a\x70\x6c\141\x63\x65\150\157\154\x64\x65\x72\75\x22\164\x72\x61\x6e\163\50\x27\141\144\x6d\151\x6e\72\72\141\160\160\x2e\155\x61\162\153\145\164\151\x6e\147\56\160\162\157\x6d\157\x74\151\157\156\163\x2e\143\x61\162\x74\x2d\x72\x75\x6c\x65\163\x2e\145\x64\151\x74\56\x63\x6f\165\160\157\x6e\x2d\x74\171\160\145\47\51\x22\12\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\x3e\12\40\40\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x3c\157\160\164\x69\x6f\156\xa\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x76\x61\154\x75\x65\75\42\60\42\12\x20\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x7b\x7b\x20\157\x6c\x64\x28\47\143\x6f\x75\x70\x6f\156\137\x74\171\160\x65\x27\x29\x20\x3d\x3d\x20\60\40\77\x20\47\x73\145\154\x65\x63\164\x65\144\47\x20\72\x20\x27\x27\40\x7d\175\xa\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x3e\xa\40\40\40\40\40\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x40\x6c\x61\x6e\x67\50\x27\x61\x64\x6d\151\x6e\x3a\x3a\x61\160\160\56\x6d\x61\162\153\145\164\151\x6e\x67\56\x70\162\157\155\x6f\164\x69\x6f\x6e\163\56\143\x61\x72\164\x2d\162\165\154\x65\163\56\145\144\x69\164\x2e\156\157\55\x63\157\x75\160\x6f\156\x27\x29\xa\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x3c\57\157\x70\164\151\x6f\156\x3e\xa\xa\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\74\x6f\x70\x74\x69\x6f\156\xa\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x76\x61\x6c\x75\145\x3d\42\61\x22\xa\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\173\x7b\x20\157\154\x64\50\47\143\x6f\x75\160\x6f\x6e\137\164\171\x70\x65\x27\51\40\x3d\x3d\40\61\40\x3f\x20\x27\163\145\154\145\143\164\x65\144\47\x20\x3a\x20\47\47\x20\x7d\x7d\xa\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\40\x20\40\x20\40\76\12\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x40\154\141\156\x67\x28\47\141\144\x6d\x69\156\72\72\x61\x70\160\x2e\155\x61\x72\153\145\164\x69\x6e\147\56\x70\x72\x6f\155\157\164\x69\x6f\156\x73\x2e\x63\141\x72\164\55\162\165\154\x65\163\x2e\145\144\x69\x74\56\x73\x70\x65\143\151\146\x69\x63\55\143\157\x75\x70\x6f\x6e\x27\51\12\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x3c\57\157\160\x74\151\x6f\156\76\12\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\x20\74\57\170\x2d\141\x64\x6d\x69\x6e\72\72\146\x6f\162\x6d\56\x63\157\156\164\162\x6f\x6c\55\147\162\x6f\x75\x70\x2e\143\x6f\156\x74\162\x6f\154\x3e\xa\12\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\x3c\x78\55\x61\x64\155\x69\x6e\x3a\72\x66\157\x72\155\x2e\x63\157\156\x74\x72\x6f\x6c\55\147\162\x6f\x75\x70\56\145\162\162\157\162\40\x63\x6f\x6e\164\x72\157\154\x2d\156\141\x6d\x65\75\x22\143\157\165\x70\157\x6e\x5f\164\x79\160\145\x22\40\57\76\12\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\x3c\x2f\170\x2d\141\144\155\151\x6e\72\72\146\x6f\162\155\56\x63\x6f\156\x74\x72\x6f\x6c\x2d\x67\162\x6f\x75\160\x3e\12\12\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\74\164\145\155\160\x6c\141\164\145\x20\166\x2d\x69\x66\x3d\42\x70\141\x72\x73\x65\x49\156\x74\x28\x63\157\x75\x70\x6f\x6e\124\x79\160\x65\x29\42\76\12\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x3c\170\55\141\144\x6d\151\x6e\x3a\x3a\x66\157\162\x6d\56\x63\157\x6e\x74\x72\x6f\x6c\55\147\162\x6f\165\160\x3e\xa\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\74\170\x2d\x61\x64\155\x69\156\x3a\x3a\x66\x6f\x72\155\x2e\143\x6f\x6e\x74\x72\157\x6c\55\147\x72\157\165\x70\56\154\x61\x62\x65\154\40\143\x6c\x61\x73\x73\x3d\42\162\x65\161\x75\151\162\145\144\x22\76\xa\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\x40\154\141\x6e\147\50\x27\141\144\x6d\x69\x6e\72\72\x61\160\x70\x2e\x6d\x61\x72\153\145\x74\x69\x6e\x67\56\160\162\157\155\x6f\164\151\157\x6e\x73\56\143\141\162\x74\x2d\162\x75\x6c\145\163\56\145\144\151\164\x2e\141\165\164\157\55\147\145\156\145\x72\141\x74\145\x2d\143\x6f\x75\160\x6f\156\x27\x29\12\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x3c\x2f\x78\x2d\141\144\155\151\156\72\72\x66\157\x72\155\x2e\143\x6f\156\164\x72\x6f\154\x2d\147\x72\x6f\165\160\56\x6c\141\x62\x65\154\76\xa\xa\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x3c\170\x2d\141\x64\x6d\x69\x6e\72\x3a\x66\x6f\162\x6d\56\143\157\x6e\x74\x72\157\154\x2d\x67\162\x6f\165\x70\x2e\x63\157\156\164\x72\x6f\154\xa\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x74\171\160\x65\75\x22\163\145\x6c\145\143\164\x22\12\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\151\x64\x3d\x22\165\163\145\137\141\x75\164\x6f\137\x67\x65\156\145\x72\x61\x74\151\157\x6e\x22\12\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\40\156\141\x6d\145\x3d\x22\165\x73\145\x5f\x61\165\x74\x6f\137\x67\x65\156\145\162\141\x74\151\x6f\156\42\12\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x72\165\154\145\163\75\x22\x72\145\161\x75\x69\x72\x65\x64\x22\xa\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x76\x2d\155\157\x64\145\154\75\42\x75\x73\x65\101\x75\164\x6f\107\145\x6e\x65\x72\141\x74\x69\157\156\42\xa\40\x20\40\x20\x20\x20\40\40\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\72\154\x61\x62\145\154\75\42\x74\162\141\x6e\163\x28\x27\x61\x64\x6d\x69\x6e\72\72\141\x70\x70\x2e\x6d\x61\162\153\145\x74\151\156\x67\x2e\160\162\157\155\157\164\x69\157\x6e\163\x2e\143\x61\162\x74\x2d\162\x75\154\145\163\x2e\x65\x64\x69\164\56\141\165\x74\157\55\x67\x65\156\x65\x72\141\x74\145\55\x63\157\x75\x70\157\x6e\x27\x29\42\xa\x20\40\40\40\40\x20\40\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x3a\160\x6c\x61\143\145\x68\157\154\144\145\x72\x3d\42\x74\x72\x61\156\163\x28\47\x61\x64\155\x69\x6e\72\72\x61\x70\160\56\x6d\141\162\x6b\x65\164\151\x6e\x67\x2e\160\162\157\x6d\157\164\151\157\x6e\163\56\x63\x61\162\164\55\x72\x75\154\145\163\56\x65\144\x69\x74\x2e\x61\x75\x74\x6f\x2d\x67\145\x6e\145\162\141\x74\145\55\x63\157\x75\160\157\x6e\x27\x29\42\xa\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x3e\12\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\74\157\x70\x74\x69\x6f\x6e\xa\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\40\x76\x61\x6c\x75\x65\75\42\60\42\12\x20\40\x20\40\40\40\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\173\173\x20\x6f\154\x64\50\x27\x75\x73\145\137\141\165\164\x6f\x5f\x67\x65\156\x65\x72\x61\x74\151\157\156\x27\51\40\x3d\75\40\x30\40\x3f\40\x27\x73\145\154\145\x63\x74\145\144\x27\x20\x3a\40\47\x27\40\x7d\x7d\xa\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x3e\xa\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\40\40\40\40\40\x40\x6c\141\156\147\x28\47\x61\144\x6d\x69\156\x3a\72\141\160\160\x2e\155\141\x72\x6b\145\x74\151\x6e\147\56\160\162\x6f\155\x6f\x74\x69\157\x6e\163\56\143\x61\x72\164\x2d\x72\165\x6c\145\163\x2e\145\144\x69\x74\56\156\x6f\x27\51\12\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x3c\57\157\x70\164\x69\157\156\x3e\12\xa\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\74\157\160\x74\x69\157\156\12\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x76\x61\154\165\145\75\42\x31\42\12\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\173\173\x20\x6f\x6c\x64\x28\x27\x75\x73\x65\137\141\165\164\x6f\x5f\x67\x65\x6e\x65\162\141\x74\x69\157\x6e\47\51\x20\75\75\40\61\40\x3f\x20\47\163\x65\154\145\x63\164\x65\x64\x27\40\x3a\x20\47\x27\40\175\175\xa\40\40\40\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x3e\xa\40\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\100\x6c\x61\x6e\x67\50\x27\141\144\155\x69\x6e\x3a\x3a\141\160\x70\56\x6d\141\x72\153\145\x74\x69\156\147\56\160\x72\x6f\155\x6f\164\x69\157\156\163\56\x63\141\162\164\x2d\x72\x75\154\x65\163\56\x65\x64\x69\x74\56\171\145\x73\47\51\12\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\x3c\x2f\157\x70\164\151\157\x6e\x3e\12\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x3c\x2f\x78\x2d\141\x64\x6d\x69\156\x3a\72\x66\157\x72\x6d\56\143\157\156\164\162\157\154\55\x67\x72\x6f\165\160\x2e\143\157\156\x74\162\157\x6c\x3e\12\12\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\x3c\170\55\x61\x64\x6d\151\x6e\x3a\72\146\x6f\x72\155\x2e\143\157\x6e\x74\162\x6f\154\55\x67\x72\157\165\x70\56\145\162\162\x6f\x72\40\x63\157\156\164\x72\x6f\154\x2d\156\x61\155\x65\x3d\x22\x63\157\165\x70\x6f\x6e\x5f\x74\171\x70\x65\42\x20\57\x3e\12\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\40\40\40\x20\74\x2f\x78\55\x61\144\x6d\151\x6e\x3a\x3a\x66\x6f\162\x6d\56\143\157\156\x74\162\x6f\x6c\x2d\147\x72\x6f\x75\x70\x3e\xa\12\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\74\170\55\x61\144\155\151\x6e\x3a\72\x66\x6f\162\x6d\56\x63\x6f\156\164\162\157\x6c\x2d\147\162\157\165\160\x20\x76\x2d\151\x66\x3d\x22\41\40\x70\141\x72\x73\145\x49\156\x74\x28\x75\163\145\101\x75\x74\157\x47\x65\156\145\162\141\164\x69\157\x6e\x29\x22\x3e\xa\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\40\x3c\170\55\141\144\155\151\x6e\72\x3a\x66\157\162\155\56\143\x6f\156\x74\162\x6f\x6c\55\x67\x72\157\165\160\56\154\x61\x62\145\x6c\40\143\x6c\141\x73\x73\75\x22\162\x65\161\x75\x69\x72\145\x64\x22\76\12\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\x20\40\40\100\154\x61\x6e\147\x28\47\141\144\155\151\156\72\x3a\141\x70\x70\56\155\141\x72\x6b\145\164\x69\x6e\147\x2e\160\162\x6f\155\157\164\151\x6f\x6e\x73\56\143\x61\x72\x74\55\x72\165\x6c\145\x73\56\x65\144\151\x74\56\x63\157\x75\x70\x6f\x6e\x2d\x63\x6f\144\145\47\51\12\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x3c\57\x78\x2d\x61\x64\x6d\151\156\x3a\72\146\157\x72\x6d\x2e\143\x6f\x6e\164\162\157\154\x2d\x67\x72\157\x75\x70\x2e\x6c\x61\x62\145\154\x3e\12\xa\x20\40\40\40\40\x20\40\x20\40\40\40\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\74\170\55\141\x64\155\x69\156\72\72\x66\x6f\x72\155\56\143\157\156\x74\x72\157\x6c\x2d\147\162\x6f\x75\x70\x2e\x63\x6f\x6e\164\162\x6f\x6c\xa\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\164\x79\x70\145\75\42\x74\145\x78\164\42\xa\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\151\144\75\42\143\x6f\165\x70\157\x6e\x5f\x63\x6f\x64\x65\x22\12\x20\x20\x20\40\40\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\40\156\x61\155\x65\75\42\x63\x6f\165\160\x6f\x6e\x5f\x63\157\144\145\x22\12\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x72\165\154\145\x73\x3d\42\x72\145\x71\x75\151\x72\x65\x64\42\xa\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x3a\x76\141\154\165\145\75\x22\x6f\154\x64\x28\47\143\157\x75\x70\x6f\x6e\137\143\x6f\144\145\x27\x29\x20\x3f\77\x20\44\143\141\162\x74\x52\x75\x6c\x65\55\76\x63\x6f\x75\x70\x6f\x6e\137\143\x6f\144\145\x22\12\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x3a\x6c\x61\x62\145\154\x3d\42\x74\162\x61\x6e\x73\50\47\141\144\x6d\151\156\x3a\72\141\160\x70\56\155\141\162\x6b\145\164\x69\156\x67\56\x70\x72\157\x6d\x6f\x74\x69\157\156\x73\56\x63\x61\x72\x74\55\x72\165\x6c\145\163\x2e\145\144\x69\164\56\x63\x6f\165\160\x6f\x6e\x2d\143\x6f\x64\145\47\x29\x22\xa\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\72\x70\154\x61\x63\x65\150\157\154\144\x65\x72\75\42\164\x72\x61\156\163\x28\47\x61\x64\x6d\x69\156\72\72\141\x70\x70\56\155\x61\x72\x6b\145\164\x69\x6e\x67\56\160\x72\157\x6d\157\164\151\157\156\x73\x2e\x63\141\x72\x74\55\162\165\x6c\x65\x73\56\x65\x64\151\x74\56\x63\157\x75\160\157\x6e\55\x63\157\144\x65\47\x29\42\12\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\40\x20\40\40\57\x3e\12\xa\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\74\x78\x2d\141\x64\x6d\x69\156\72\72\146\157\162\x6d\x2e\143\157\156\164\162\x6f\x6c\55\x67\162\157\165\x70\x2e\145\x72\162\157\x72\40\143\157\x6e\x74\x72\157\x6c\55\x6e\x61\x6d\x65\x3d\x22\x63\x6f\x75\x70\157\x6e\137\x63\x6f\x64\145\x22\x20\x2f\76\xa\40\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x3c\x2f\x78\55\x61\144\x6d\151\156\72\72\146\x6f\162\x6d\x2e\x63\157\156\x74\162\x6f\x6c\55\x67\x72\x6f\x75\x70\x3e\12\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\xa\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\x3c\x78\x2d\141\144\155\151\156\x3a\72\146\157\x72\155\56\x63\x6f\x6e\x74\162\157\x6c\x2d\147\x72\x6f\x75\160\x3e\12\40\40\40\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\74\170\x2d\141\144\155\151\x6e\72\x3a\146\157\x72\155\56\143\157\156\x74\162\157\x6c\55\x67\x72\157\165\160\56\x6c\141\142\145\x6c\76\12\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\x40\x6c\141\156\147\x28\47\x61\x64\155\151\156\x3a\72\x61\x70\160\x2e\155\141\x72\153\145\164\x69\x6e\147\x2e\x70\162\x6f\x6d\157\164\x69\157\x6e\163\56\x63\x61\x72\164\55\x72\165\154\145\x73\56\x65\x64\151\x74\x2e\165\x73\145\163\55\160\145\162\55\143\157\x75\160\157\156\x27\51\12\40\40\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\74\x2f\x78\55\141\x64\155\151\x6e\x3a\x3a\x66\x6f\162\x6d\56\x63\x6f\x6e\x74\x72\x6f\154\x2d\147\162\x6f\165\160\x2e\x6c\141\x62\x65\154\x3e\12\xa\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\74\x78\55\x61\144\x6d\151\156\x3a\72\x66\157\162\155\x2e\x63\x6f\x6e\164\162\x6f\154\55\x67\162\157\x75\x70\56\x63\157\x6e\x74\x72\x6f\154\12\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\164\171\x70\x65\75\42\x74\145\x78\x74\42\12\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\x69\144\x3d\42\x75\x73\145\163\x5f\160\x65\x72\x5f\143\x6f\165\x70\157\156\x22\12\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\156\141\x6d\x65\75\42\x75\163\145\x73\x5f\160\x65\x72\x5f\x63\x6f\x75\x70\x6f\x6e\x22\xa\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\72\x76\x61\x6c\x75\x65\75\42\x6f\154\x64\x28\47\165\163\x65\163\x5f\160\145\x72\x5f\143\x6f\x75\x70\x6f\x6e\47\51\x20\x3f\x3f\x20\x24\143\x61\x72\x74\x52\x75\x6c\x65\x2d\x3e\x75\x73\145\163\x5f\160\x65\x72\137\143\x6f\165\x70\157\156\42\xa\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\72\154\141\x62\145\154\x3d\42\164\162\x61\156\x73\50\x27\x61\x64\155\151\x6e\x3a\x3a\141\x70\160\x2e\x6d\141\x72\153\145\164\151\x6e\x67\56\x70\x72\157\x6d\157\x74\x69\157\156\163\56\143\x61\x72\164\x2d\x72\165\x6c\x65\163\56\145\144\151\x74\56\x75\163\x65\x73\x2d\x70\145\162\55\143\157\165\160\x6f\x6e\47\x29\x22\12\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\72\160\x6c\x61\143\x65\x68\157\x6c\144\x65\x72\75\x22\164\x72\x61\x6e\163\50\47\x61\x64\x6d\151\x6e\72\x3a\x61\x70\x70\56\155\141\x72\153\145\x74\x69\x6e\147\x2e\x70\x72\157\x6d\157\164\151\x6f\x6e\163\x2e\143\x61\x72\164\x2d\162\165\154\x65\163\x2e\x65\144\x69\x74\56\165\x73\x65\x73\x2d\160\145\162\x2d\143\157\x75\160\157\156\x27\x29\42\12\40\x20\40\x20\40\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\x2f\x3e\12\xa\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\40\74\x78\55\x61\144\155\151\x6e\x3a\72\x66\157\x72\155\x2e\x63\157\156\x74\x72\x6f\154\55\x67\162\x6f\x75\x70\x2e\145\162\x72\x6f\x72\x20\143\x6f\156\x74\x72\157\x6c\55\x6e\141\x6d\x65\x3d\x22\165\x73\x65\163\137\x70\145\162\x5f\143\157\x75\160\157\x6e\42\x20\57\x3e\xa\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\40\x3c\57\x78\x2d\141\144\155\151\x6e\72\72\146\157\162\155\56\143\x6f\x6e\x74\162\157\x6c\55\x67\x72\x6f\165\x70\76\12\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\74\x2f\164\145\155\160\x6c\x61\164\x65\x3e\12\xa\40\40\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\74\170\55\141\144\x6d\x69\x6e\72\72\146\157\x72\x6d\x2e\x63\x6f\156\x74\x72\x6f\154\55\x67\x72\x6f\165\x70\x3e\12\40\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\74\x78\x2d\x61\144\x6d\151\x6e\72\x3a\x66\157\162\155\x2e\x63\x6f\x6e\164\162\x6f\154\55\x67\162\157\x75\160\56\x6c\141\142\x65\154\x3e\12\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\x40\x6c\141\156\147\50\x27\141\144\155\151\156\x3a\x3a\x61\160\x70\x2e\x6d\141\162\153\x65\164\x69\156\x67\56\160\162\157\x6d\x6f\x74\x69\157\156\x73\56\x63\x61\162\x74\55\162\165\x6c\x65\163\56\x65\144\x69\x74\x2e\165\163\x65\163\x2d\160\x65\162\x2d\143\165\163\164\x6f\155\145\x72\47\x29\12\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\74\57\170\55\x61\x64\155\x69\156\x3a\72\x66\x6f\x72\155\x2e\x63\157\156\164\x72\157\x6c\x2d\147\162\157\165\160\x2e\154\x61\142\145\x6c\76\12\xa\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\74\x78\55\x61\144\x6d\151\x6e\x3a\72\146\x6f\162\155\56\x63\x6f\x6e\164\162\x6f\154\x2d\147\x72\x6f\165\160\x2e\143\157\156\164\162\x6f\x6c\12\40\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x74\171\x70\x65\75\x22\164\x65\x78\x74\x22\12\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\40\40\151\x64\x3d\42\165\163\x61\x67\x65\x5f\x70\x65\162\x5f\143\x75\x73\164\x6f\x6d\145\162\x22\12\40\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x6e\141\155\x65\x3d\x22\165\x73\141\x67\145\137\x70\x65\162\137\143\x75\x73\164\157\155\x65\x72\x22\xa\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\72\166\141\154\x75\145\75\42\157\x6c\144\50\x27\165\x73\141\x67\145\x5f\160\145\162\x5f\x63\x75\x73\164\157\x6d\x65\x72\x27\51\x20\x3f\x3f\x20\44\143\141\x72\x74\122\x75\x6c\x65\x2d\x3e\165\x73\141\147\145\137\160\145\162\x5f\143\165\x73\x74\x6f\x6d\x65\162\x22\12\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x3a\154\141\142\145\x6c\75\x22\164\x72\x61\x6e\163\50\47\x61\x64\x6d\151\156\x3a\x3a\x61\x70\x70\x2e\155\141\x72\x6b\x65\x74\151\x6e\x67\56\x70\162\x6f\x6d\x6f\x74\151\x6f\156\163\56\143\x61\x72\x74\55\162\165\x6c\x65\x73\56\x65\144\151\164\x2e\x75\x73\145\163\x2d\160\x65\162\x2d\x63\165\x73\x74\157\155\x65\162\47\51\x22\12\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x3a\x70\x6c\x61\143\x65\150\x6f\x6c\144\145\162\x3d\42\164\162\141\x6e\x73\x28\x27\x61\x64\x6d\151\156\72\x3a\141\160\x70\56\x6d\141\x72\x6b\x65\164\151\156\x67\56\160\162\157\x6d\x6f\x74\x69\157\156\x73\56\143\141\162\164\x2d\162\x75\154\145\163\56\x65\x64\151\x74\x2e\x75\x73\x65\x73\x2d\160\145\162\55\143\165\x73\x74\x6f\x6d\145\162\47\x29\x22\xa\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\57\76\xa\xa\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x3c\x78\x2d\141\x64\155\x69\x6e\x3a\x3a\146\157\x72\x6d\56\x63\x6f\156\164\162\157\154\x2d\147\162\x6f\165\160\56\x65\x72\x72\x6f\162\40\143\x6f\156\164\x72\157\154\x2d\x6e\141\155\145\x3d\42\165\x73\x61\147\x65\x5f\160\x65\162\x5f\143\165\x73\164\x6f\155\145\162\42\40\57\x3e\12\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x3c\57\x78\55\141\x64\155\x69\156\x3a\72\x66\157\162\155\56\x63\157\156\x74\x72\157\x6c\55\147\x72\x6f\165\x70\76\xa\xa\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\74\x70\40\x63\154\x61\x73\163\x3d\x22\164\x65\x78\x74\55\163\155\40\x74\145\x78\x74\x2d\x67\162\x61\171\x2d\x35\60\x30\x22\76\12\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\100\x6c\x61\156\x67\x28\47\x61\x64\155\x69\156\x3a\x3a\x61\x70\x70\56\x6d\141\x72\x6b\x65\x74\x69\x6e\147\56\160\162\x6f\155\157\x74\x69\x6f\156\163\56\143\x61\162\164\x2d\162\165\x6c\x65\x73\56\145\144\151\x74\56\x75\163\x65\x73\x2d\160\145\x72\55\143\165\x73\x74\x6f\155\145\162\x2d\x63\x6f\156\x74\162\157\154\x2d\x69\x6e\x66\x6f\47\x29\xa\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x3c\x2f\160\x3e\xa\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\40\40\x20\40\x20\74\x2f\144\151\x76\x3e\12\xa\40\40\40\40\x20\40\40\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\173\x21\41\x20\166\151\145\x77\137\x72\145\156\144\145\x72\137\x65\x76\x65\x6e\x74\50\47\x62\x61\147\151\163\164\157\x2e\141\144\x6d\151\x6e\x2e\155\x61\162\x6b\x65\x74\x69\156\147\x2e\160\162\157\155\x6f\164\151\157\x6e\163\56\x63\x61\162\x74\137\x72\165\x6c\x65\163\x2e\145\x64\151\x74\56\x63\x61\162\144\x2e\x67\x65\x6e\x65\x72\x61\154\x2e\x61\146\164\x65\x72\x27\51\40\x21\x21\x7d\xa\xa\40\40\40\x20\x20\x20\40\40\x20\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\74\x21\x2d\x2d\40\143\x6f\155\x70\157\x6e\145\156\x74\40\146\157\x72\x20\x61\x75\x74\157\40\x67\x65\x6e\x65\x72\141\164\145\x20\143\157\x75\160\157\156\40\x63\x6f\144\145\40\55\55\76\xa\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x3c\166\55\x63\x72\x65\141\x74\145\x2d\x63\x6f\165\x70\157\x6e\x2d\x66\x6f\162\x6d\40\x76\55\151\146\75\x22\160\x61\162\x73\x65\111\x6e\164\x28\x75\163\x65\101\x75\x74\157\107\145\156\x65\162\x61\x74\x69\157\156\51\x20\x26\46\x20\160\141\x72\163\x65\111\156\x74\50\x63\157\165\x70\157\156\x54\x79\160\x65\x29\x22\x3e\x3c\57\166\55\x63\x72\145\141\x74\x65\x2d\143\x6f\165\x70\157\156\55\146\157\x72\x6d\x3e\12\xa\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\173\41\41\x20\166\x69\145\167\137\162\145\x6e\x64\145\162\137\145\166\145\156\x74\50\47\142\141\147\151\163\x74\x6f\56\x61\x64\x6d\x69\156\x2e\155\141\x72\x6b\x65\164\151\156\147\x2e\160\162\x6f\x6d\157\x74\151\157\156\163\x2e\x63\x61\x72\164\x5f\162\x75\x6c\x65\163\x2e\x65\x64\151\x74\56\x63\x61\x72\144\x2e\x63\157\156\x64\x69\x74\151\157\156\163\56\142\145\146\x6f\162\x65\47\x29\40\41\41\175\12\12\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\74\41\55\x2d\40\x43\x6f\156\x64\151\164\x69\x6f\156\x73\40\x2d\55\x3e\xa\40\40\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x3c\x64\151\166\x20\x63\154\x61\x73\x73\x3d\x22\x70\x2d\64\40\x62\147\x2d\x77\x68\x69\164\145\40\x64\x61\162\153\x3a\142\x67\x2d\x67\162\141\171\55\x39\x30\x30\x20\162\157\x75\156\144\145\144\40\x62\x6f\170\55\x73\150\x61\144\157\167\42\x3e\12\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\74\144\151\x76\x20\143\x6c\x61\x73\x73\75\x22\x66\x6c\x65\x78\40\x67\x61\x70\x2d\x34\x20\x69\x74\145\155\x73\55\x63\x65\156\x74\145\x72\40\x6a\x75\x73\164\151\146\171\x2d\x62\145\164\167\145\145\156\40\155\142\x2d\x38\42\x3e\xa\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x3c\x70\x20\143\x6c\x61\x73\x73\75\42\164\145\x78\164\55\142\x61\x73\x65\x20\x74\145\x78\164\x2d\147\162\141\171\x2d\70\x30\60\40\x64\x61\162\x6b\72\x74\x65\170\x74\55\x77\x68\x69\x74\x65\40\x66\x6f\x6e\164\55\163\x65\x6d\151\142\157\x6c\x64\42\76\xa\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\100\x6c\x61\x6e\x67\x28\x27\141\144\155\151\x6e\x3a\x3a\141\160\x70\x2e\x6d\141\162\153\145\x74\x69\x6e\x67\56\160\x72\x6f\155\157\x74\x69\157\x6e\x73\x2e\143\x61\162\x74\x2d\162\165\x6c\x65\163\x2e\x65\144\x69\x74\56\x63\157\x6e\144\x69\164\x69\x6f\x6e\163\x27\x29\xa\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x3c\x2f\160\76\12\xa\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\74\170\55\x61\x64\155\151\156\72\72\x66\x6f\162\x6d\x2e\x63\x6f\x6e\164\x72\x6f\154\x2d\x67\x72\x6f\165\160\x3e\12\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\74\x78\55\x61\x64\x6d\151\156\x3a\x3a\x66\157\x72\155\x2e\143\157\156\x74\162\157\154\55\x67\162\157\x75\x70\56\x6c\141\x62\x65\154\x3e\12\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\100\154\x61\x6e\147\x28\x27\141\x64\x6d\x69\156\x3a\72\141\160\x70\56\x6d\x61\162\153\145\x74\151\x6e\147\x2e\x70\x72\x6f\x6d\157\164\151\x6f\x6e\x73\56\143\x61\162\164\x2d\162\x75\154\145\x73\56\x65\144\151\x74\x2e\x63\157\156\x64\x69\x74\x69\157\x6e\x2d\164\171\160\145\47\51\xa\40\x20\x20\40\40\40\40\40\x20\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\40\x3c\57\170\x2d\x61\144\155\151\x6e\72\x3a\x66\x6f\x72\155\x2e\143\157\x6e\x74\x72\157\154\x2d\x67\162\157\x75\160\56\x6c\141\x62\145\154\x3e\12\12\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x3c\x78\55\x61\x64\155\151\156\x3a\x3a\146\157\162\x6d\56\x63\157\156\x74\x72\x6f\154\x2d\147\x72\157\165\x70\x2e\143\157\x6e\164\162\x6f\x6c\xa\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x74\171\x70\145\75\x22\x73\145\154\145\x63\x74\x22\12\40\40\x20\40\40\x20\40\40\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x63\x6c\141\x73\x73\75\x22\154\164\162\x3a\x70\x72\x2d\x31\x30\40\x72\164\x6c\72\160\x6c\55\61\x30\42\12\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x69\144\75\42\143\x6f\x6e\144\151\x74\151\157\x6e\137\164\x79\160\145\x22\xa\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\156\141\155\x65\x3d\42\143\157\156\144\151\164\x69\157\156\137\164\x79\x70\x65\42\12\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\x76\55\x6d\157\x64\145\154\75\x22\x63\157\x6e\144\151\164\x69\157\156\124\x79\x70\145\42\12\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x3a\x6c\x61\142\x65\154\x3d\x22\164\x72\141\156\163\50\x27\x61\144\155\151\156\72\x3a\x61\160\x70\x2e\155\x61\x72\153\x65\x74\x69\156\x67\56\x70\162\x6f\155\157\164\x69\x6f\x6e\x73\56\x63\x61\x72\164\55\x72\x75\154\x65\x73\x2e\x65\x64\151\x74\x2e\x63\x6f\x6e\144\x69\x74\x69\157\156\x2d\164\171\x70\x65\47\51\42\xa\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\72\x70\x6c\x61\143\145\x68\x6f\x6c\x64\x65\162\75\x22\x74\x72\141\x6e\163\50\47\141\144\155\151\x6e\x3a\72\x61\x70\x70\x2e\x6d\x61\162\153\x65\164\x69\156\147\x2e\x70\x72\x6f\x6d\x6f\164\151\157\x6e\x73\x2e\143\141\162\x74\x2d\162\x75\154\145\x73\56\x65\x64\151\x74\56\x63\x6f\x6e\144\x69\164\151\157\156\x2d\164\x79\160\145\47\x29\x22\12\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x3e\xa\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x3c\x6f\160\x74\x69\x6f\x6e\40\166\x61\154\x75\145\x3d\42\x31\x22\76\12\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\100\154\x61\x6e\147\50\47\x61\144\x6d\x69\x6e\72\72\141\x70\x70\x2e\x6d\141\x72\x6b\x65\164\151\156\147\x2e\160\x72\x6f\x6d\157\x74\x69\157\x6e\x73\x2e\143\x61\162\x74\x2d\162\165\x6c\145\163\x2e\x65\144\151\x74\x2e\141\x6c\x6c\55\143\x6f\156\144\151\x74\x69\157\156\163\55\164\x72\x75\145\47\x29\xa\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\74\57\x6f\x70\x74\151\x6f\156\x3e\xa\xa\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\74\157\160\x74\x69\x6f\156\x20\166\x61\x6c\x75\x65\75\x22\x32\x22\x3e\xa\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\100\x6c\x61\x6e\147\x28\x27\x61\x64\155\x69\x6e\72\x3a\x61\160\160\x2e\155\141\162\x6b\145\164\151\x6e\147\x2e\x70\162\x6f\x6d\x6f\164\x69\157\x6e\x73\56\x63\x61\162\x74\55\162\x75\x6c\145\x73\56\145\144\x69\164\x2e\x61\156\x79\55\143\x6f\x6e\x64\151\164\151\x6f\x6e\163\55\x74\162\165\145\x27\x29\xa\x20\40\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\74\x2f\157\x70\x74\151\157\156\76\xa\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\x3c\x2f\170\55\x61\x64\x6d\x69\x6e\72\x3a\146\157\x72\155\x2e\x63\157\x6e\x74\x72\157\x6c\55\147\x72\x6f\x75\x70\56\143\x6f\156\x74\162\x6f\x6c\x3e\xa\xa\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\40\74\x78\x2d\x61\x64\x6d\x69\156\72\x3a\x66\x6f\162\x6d\56\x63\157\156\164\162\x6f\x6c\55\x67\x72\x6f\165\160\x2e\145\x72\162\x6f\x72\x20\x63\x6f\156\x74\x72\x6f\x6c\x2d\x6e\141\155\145\75\42\143\157\x6e\144\x69\x74\x69\157\x6e\x5f\164\x79\x70\145\x22\40\57\x3e\xa\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x3c\x2f\x78\x2d\141\x64\155\151\156\x3a\x3a\x66\x6f\162\155\56\x63\157\156\x74\162\x6f\x6c\55\x67\162\157\x75\x70\76\xa\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\74\57\x64\x69\166\x3e\xa\xa\x20\40\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x3c\166\x2d\143\141\x72\164\55\x72\165\x6c\x65\x2d\x63\x6f\156\x64\151\164\151\157\156\x2d\x69\x74\x65\155\xa\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x76\55\x66\x6f\x72\75\47\50\143\157\156\144\x69\164\x69\157\156\x2c\x20\151\x6e\144\145\170\x29\40\x69\156\x20\x63\157\156\x64\151\164\x69\157\156\x73\x27\xa\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\40\x3a\x63\157\156\x64\x69\x74\151\157\156\x3d\42\x63\157\x6e\x64\151\164\x69\x6f\x6e\42\xa\40\40\40\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\x3a\153\145\171\75\42\151\x6e\x64\x65\170\42\xa\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x3a\151\x6e\x64\145\170\x3d\x22\151\x6e\x64\x65\x78\x22\12\x20\40\40\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\100\x6f\156\122\x65\x6d\x6f\166\145\103\x6f\x6e\144\151\x74\x69\157\x6e\x3d\x22\x72\x65\155\157\x76\x65\x43\157\x6e\144\151\x74\151\157\156\50\44\x65\x76\145\156\x74\51\x22\xa\40\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\x3e\xa\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\74\57\x76\55\143\141\x72\164\x2d\162\x75\154\145\55\143\157\156\x64\x69\164\x69\157\156\55\151\x74\145\x6d\76\12\12\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x3c\144\151\x76\12\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\x63\x6c\x61\163\163\x3d\x22\x73\x65\x63\x6f\x6e\x64\x61\x72\171\55\142\165\x74\164\x6f\x6e\40\155\x61\x78\x2d\167\55\155\x61\170\x20\155\x74\x2d\64\42\xa\40\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x40\x63\x6c\x69\x63\153\x3d\42\x61\x64\x64\103\x6f\x6e\144\x69\164\151\157\156\x22\xa\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\76\xa\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\100\x6c\141\x6e\x67\x28\x27\x61\144\x6d\x69\156\x3a\x3a\x61\160\x70\56\155\141\x72\x6b\145\x74\151\x6e\x67\56\160\x72\x6f\x6d\157\x74\x69\x6f\156\163\56\x63\x61\162\x74\55\162\165\154\x65\x73\56\x65\144\x69\x74\56\x61\144\144\55\143\x6f\x6e\144\x69\x74\151\x6f\x6e\47\x29\xa\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\40\x3c\x2f\x64\151\166\76\xa\xa\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\74\x2f\x64\x69\166\76\12\xa\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\173\x21\41\40\x76\151\x65\167\137\162\x65\x6e\144\145\x72\137\145\x76\145\156\164\50\x27\x62\x61\147\x69\x73\x74\157\x2e\141\x64\155\151\x6e\56\x6d\x61\x72\x6b\x65\164\151\156\x67\x2e\160\x72\157\155\157\x74\x69\157\x6e\x73\x2e\143\141\x72\164\x5f\x72\x75\x6c\145\163\56\x65\x64\x69\164\56\x63\x61\162\x64\56\x63\x6f\156\x64\x69\164\151\x6f\156\163\x2e\141\146\164\x65\162\x27\51\40\x21\x21\x7d\12\xa\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\40\40\40\x7b\41\x21\40\166\151\145\167\137\162\x65\156\x64\x65\x72\137\x65\x76\x65\x6e\x74\50\47\x62\x61\147\x69\163\164\x6f\x2e\x61\144\155\x69\x6e\56\155\141\x72\x6b\145\x74\x69\x6e\x67\56\160\x72\x6f\155\157\x74\151\x6f\156\163\56\143\x61\x72\x74\137\x72\165\x6c\x65\163\x2e\x65\x64\x69\x74\x2e\143\141\162\x64\x2e\141\x63\164\151\157\156\x73\56\x62\145\146\157\162\x65\x27\51\40\41\x21\175\12\12\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x3c\x21\x2d\55\40\x41\143\x74\151\157\x6e\x20\55\55\x3e\12\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\74\x64\x69\x76\40\x63\x6c\141\163\163\75\42\x70\55\x34\x20\x62\x67\55\167\x68\151\164\145\x20\144\141\162\153\72\x62\147\x2d\x67\x72\141\171\55\x39\x30\x30\40\x72\x6f\x75\x6e\x64\145\x64\x20\142\x6f\170\x2d\163\150\141\x64\157\x77\x22\76\12\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x3c\144\x69\x76\x20\x63\154\141\x73\x73\75\x22\x67\x72\151\144\40\147\141\x70\55\61\x2e\x35\x22\76\12\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x3c\160\x20\143\154\141\x73\x73\75\x22\x6d\x62\55\x34\x20\x74\x65\170\x74\55\x62\141\x73\145\x20\x74\x65\x78\164\x2d\x67\162\141\x79\x2d\70\60\60\40\144\x61\162\153\x3a\x74\x65\x78\164\x2d\167\x68\151\164\145\x20\146\x6f\156\164\x2d\163\x65\155\x69\142\157\x6c\x64\42\x3e\12\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\100\154\x61\x6e\147\x28\47\x61\x64\x6d\151\x6e\72\72\x61\x70\160\56\x6d\141\x72\x6b\x65\x74\151\156\x67\56\160\x72\x6f\x6d\x6f\x74\151\x6f\156\163\x2e\x63\x61\162\164\x2d\x72\165\x6c\145\x73\x2e\x65\144\x69\164\x2e\x61\x63\164\151\x6f\x6e\163\47\x29\12\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x3c\57\160\76\12\xa\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\74\144\x69\166\40\143\154\141\x73\163\x3d\x22\146\154\145\170\x20\147\141\x70\55\x34\x20\x20\155\141\x78\x2d\163\x6d\72\146\x6c\x65\170\x2d\167\x72\141\160\42\76\xa\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\74\144\151\x76\40\143\x6c\x61\163\x73\x3d\x22\x77\x2d\146\x75\154\154\x22\76\xa\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\74\x78\x2d\x61\144\x6d\x69\x6e\72\x3a\146\x6f\162\155\x2e\143\157\156\164\x72\x6f\x6c\55\147\162\x6f\165\x70\76\xa\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\x3c\x78\x2d\x61\144\x6d\151\156\72\x3a\x66\x6f\162\155\56\143\157\156\164\162\x6f\154\x2d\147\x72\x6f\165\x70\x2e\154\x61\142\x65\x6c\x20\143\154\x61\x73\163\75\42\162\x65\161\x75\151\x72\145\x64\42\76\12\40\40\40\40\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\100\x6c\x61\x6e\147\50\47\x61\144\155\x69\x6e\72\72\x61\x70\160\56\x6d\x61\162\153\145\x74\x69\x6e\x67\56\x70\162\x6f\x6d\157\x74\x69\x6f\x6e\163\56\x63\x61\x72\164\55\x72\x75\x6c\x65\163\56\145\x64\x69\x74\x2e\141\x63\164\151\x6f\156\x2d\164\171\160\145\47\51\12\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\74\57\x78\x2d\x61\144\x6d\x69\x6e\72\72\x66\157\x72\155\x2e\143\157\156\164\162\157\x6c\55\147\x72\157\x75\x70\x2e\154\141\x62\145\154\76\xa\12\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\74\x78\x2d\x61\x64\155\151\156\x3a\72\x66\157\x72\x6d\x2e\143\157\x6e\x74\162\x6f\x6c\55\147\162\x6f\x75\160\x2e\143\x6f\x6e\164\162\x6f\x6c\xa\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\164\x79\x70\x65\75\x22\x73\x65\154\145\143\x74\x22\12\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\x20\40\40\151\144\x3d\42\x61\143\x74\151\x6f\x6e\x5f\164\171\160\145\42\xa\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\156\x61\155\145\75\42\141\x63\164\151\157\156\x5f\x74\171\160\x65\42\xa\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x72\165\x6c\145\x73\75\42\x72\x65\161\165\151\162\x65\144\42\12\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\x76\55\155\157\144\x65\x6c\x3d\42\141\143\164\151\x6f\x6e\124\x79\x70\145\x22\12\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x3a\154\141\x62\x65\154\75\42\x74\162\141\x6e\163\50\x27\141\144\x6d\x69\156\x3a\x3a\141\160\x70\56\155\141\162\x6b\145\x74\x69\x6e\147\x2e\160\162\x6f\155\x6f\164\151\x6f\156\x73\x2e\143\x61\x72\x74\x2d\162\x75\x6c\x65\163\x2e\145\x64\x69\164\56\141\143\x74\x69\157\x6e\x2d\x74\x79\160\x65\x27\x29\42\xa\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x3a\160\x6c\x61\x63\x65\150\x6f\x6c\x64\145\162\75\42\x74\x72\x61\x6e\x73\50\x27\x61\x64\x6d\151\x6e\x3a\x3a\x61\160\160\x2e\x6d\141\x72\153\145\164\151\156\147\x2e\160\x72\157\155\157\164\x69\157\x6e\x73\x2e\143\x61\162\x74\55\x72\165\154\145\163\56\145\144\151\x74\x2e\141\x63\164\x69\157\x6e\x2d\164\171\x70\x65\x27\x29\x22\xa\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\40\76\12\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x3c\157\160\x74\151\157\x6e\12\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\40\x76\141\154\165\145\x3d\42\142\x79\x5f\x70\145\162\143\145\156\164\x22\12\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x7b\x7b\x20\x6f\x6c\x64\50\x27\141\143\164\151\157\x6e\x5f\164\x79\x70\145\47\51\40\75\75\40\47\x62\171\137\x70\x65\162\x63\145\x6e\164\47\40\x3f\40\x27\x73\x65\154\x65\143\x74\145\x64\x27\x20\x3a\x20\x27\47\x20\x7d\175\12\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\76\12\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\40\x40\x6c\141\x6e\147\x28\47\141\144\155\151\x6e\72\72\x61\x70\x70\56\x6d\x61\162\153\x65\164\x69\x6e\x67\56\x70\162\157\x6d\157\x74\x69\157\x6e\163\x2e\x63\x61\x72\164\55\162\x75\154\x65\163\x2e\145\x64\x69\164\56\x70\145\x72\x63\x65\156\x74\x61\147\145\55\x70\x72\157\144\x75\x63\x74\55\160\162\x69\143\145\47\51\12\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x3c\x2f\x6f\x70\164\x69\x6f\156\x3e\12\12\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\40\x20\40\40\40\x20\40\40\40\40\x3c\157\160\164\151\157\x6e\xa\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x76\x61\154\x75\145\75\42\142\171\137\146\x69\170\145\144\42\xa\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\40\40\40\40\40\173\173\40\x6f\x6c\144\x28\47\141\x63\x74\151\x6f\156\x5f\164\171\x70\145\47\51\x20\x3d\x3d\x20\47\x62\x79\x5f\x66\x69\x78\x65\x64\47\x20\x3f\40\x27\163\145\154\x65\143\x74\145\144\47\40\72\40\x27\47\40\175\x7d\12\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x3e\12\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\40\100\x6c\141\156\147\x28\47\141\x64\155\151\x6e\72\72\x61\160\160\x2e\x6d\x61\x72\153\x65\x74\151\x6e\147\56\x70\x72\x6f\x6d\157\164\151\157\x6e\163\x2e\x63\141\x72\164\x2d\x72\165\x6c\145\x73\x2e\x65\144\151\164\x2e\x66\x69\x78\145\x64\55\x61\x6d\157\x75\156\164\x27\x29\xa\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\x3c\57\157\160\164\151\157\x6e\x3e\12\12\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x3c\x6f\x70\164\x69\157\x6e\12\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x76\x61\x6c\x75\x65\x3d\x22\x63\141\x72\x74\137\x66\151\x78\145\x64\42\xa\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x7b\173\40\x6f\x6c\144\x28\47\141\143\x74\151\157\156\x5f\164\x79\x70\145\47\51\x20\x3d\75\x20\47\x63\141\162\164\x5f\146\151\x78\145\x64\47\x20\77\40\x27\163\x65\154\x65\x63\164\x65\144\47\40\72\40\x27\47\40\x7d\175\12\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\76\xa\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\100\154\141\156\x67\50\47\141\144\155\x69\156\72\x3a\141\x70\160\56\155\141\x72\x6b\145\164\151\156\x67\x2e\160\162\x6f\x6d\x6f\164\151\157\156\x73\56\x63\141\x72\x74\x2d\162\165\x6c\x65\163\x2e\x65\x64\151\x74\x2e\146\151\170\145\144\55\141\155\x6f\x75\156\164\x2d\x77\150\x6f\x6c\145\55\143\141\x72\x74\x27\51\xa\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x3c\x2f\157\160\x74\x69\157\x6e\76\12\12\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\74\157\160\164\151\157\156\12\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\40\166\141\154\x75\145\x3d\x22\x62\x75\171\x5f\x78\137\x67\x65\164\x5f\x79\42\xa\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x7b\173\40\x6f\x6c\x64\x28\x27\141\x63\164\151\x6f\x6e\x5f\x74\171\x70\x65\47\x29\40\75\75\40\x27\x62\x75\x79\x5f\x78\137\x67\145\164\137\x79\47\40\77\x20\x27\x73\145\x6c\x65\x63\164\x65\x64\47\x20\72\40\x27\x27\x20\x7d\175\12\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\76\12\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x40\154\x61\156\147\x28\47\141\x64\155\x69\156\x3a\x3a\141\160\160\56\155\x61\x72\153\x65\x74\x69\x6e\147\56\160\162\x6f\x6d\157\x74\x69\157\156\163\x2e\143\x61\162\x74\55\x72\165\x6c\x65\163\56\145\x64\x69\x74\x2e\x62\165\x79\55\170\x2d\147\x65\164\x2d\171\55\x66\162\x65\145\47\x29\xa\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\74\x2f\157\x70\164\151\157\x6e\x3e\xa\40\40\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\40\40\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\74\x2f\x78\x2d\x61\x64\x6d\151\x6e\x3a\72\146\x6f\x72\x6d\x2e\143\x6f\x6e\164\x72\157\154\x2d\147\162\157\165\160\56\x63\157\156\x74\x72\157\154\x3e\12\xa\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\40\74\x78\55\x61\144\155\151\x6e\72\72\146\x6f\x72\x6d\x2e\x63\157\x6e\x74\x72\x6f\154\55\x67\162\x6f\x75\160\x2e\145\162\162\x6f\162\x20\x63\x6f\x6e\164\162\157\154\55\x6e\x61\155\145\75\42\141\143\x74\151\157\156\x5f\164\x79\160\145\x22\x20\x2f\x3e\12\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\x3c\x2f\x78\55\x61\144\x6d\151\x6e\x3a\72\x66\157\x72\x6d\56\x63\157\x6e\164\162\157\x6c\x2d\x67\162\157\x75\x70\76\12\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x3c\x2f\x64\151\x76\x3e\12\12\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\74\144\151\166\x20\143\154\141\x73\163\x3d\42\x77\x2d\146\165\x6c\x6c\x22\76\xa\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\40\40\40\40\x20\40\x20\x20\x3c\170\55\141\144\x6d\x69\x6e\72\72\146\x6f\x72\x6d\56\143\157\x6e\x74\162\x6f\x6c\55\147\x72\x6f\x75\160\x3e\xa\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x3c\170\x2d\141\x64\x6d\151\156\x3a\x3a\x66\x6f\162\155\x2e\143\157\156\x74\x72\x6f\154\x2d\147\162\157\165\x70\56\x6c\x61\x62\145\x6c\x20\143\154\141\x73\x73\75\x22\162\145\161\165\151\x72\145\x64\x22\76\12\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\40\100\x6c\x61\156\x67\x28\x27\141\x64\x6d\x69\156\x3a\72\141\x70\x70\56\x6d\x61\162\x6b\x65\x74\x69\x6e\x67\x2e\x70\x72\x6f\155\x6f\164\x69\157\x6e\x73\x2e\143\141\162\x74\55\x72\165\154\x65\x73\56\x65\144\151\164\x2e\x64\151\x73\143\157\x75\x6e\x74\55\x61\x6d\x6f\x75\156\x74\47\x29\12\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\74\57\170\x2d\x61\144\155\151\156\72\x3a\146\x6f\162\x6d\x2e\143\x6f\156\164\x72\x6f\x6c\55\x67\162\157\x75\x70\56\x6c\141\142\x65\154\x3e\12\12\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\74\x78\x2d\141\144\155\151\x6e\72\x3a\146\x6f\162\155\x2e\x63\x6f\156\x74\x72\157\x6c\55\147\162\157\x75\160\56\143\x6f\156\164\x72\x6f\x6c\12\40\x20\40\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x74\x79\x70\145\75\42\x74\145\x78\x74\x22\12\x20\40\40\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\151\144\x3d\x22\x64\151\163\143\x6f\165\x6e\164\x5f\141\x6d\157\165\x6e\164\x22\xa\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\40\40\40\40\x20\40\156\141\155\145\x3d\x22\x64\151\163\x63\x6f\165\156\164\137\141\x6d\x6f\x75\156\x74\x22\12\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x72\165\x6c\145\163\x3d\42\x72\145\161\165\x69\162\x65\144\42\xa\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\40\x3a\x76\141\x6c\x75\145\75\42\157\154\x64\x28\47\x64\x69\x73\x63\x6f\165\x6e\164\137\141\155\157\x75\156\x74\47\51\x20\x3f\x3f\x20\44\143\141\x72\x74\122\x75\154\145\x2d\x3e\x64\151\163\x63\157\x75\156\x74\x5f\141\155\157\165\x6e\164\x22\xa\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\72\x6c\141\x62\145\x6c\x3d\42\x74\x72\141\156\163\x28\47\141\144\x6d\151\x6e\x3a\72\141\160\160\x2e\155\141\162\x6b\145\164\x69\156\x67\x2e\x70\x72\x6f\x6d\157\x74\151\157\x6e\x73\56\x63\x61\162\164\55\162\165\154\145\x73\x2e\x65\144\151\164\x2e\144\151\163\x63\x6f\165\156\164\x2d\x61\x6d\x6f\x75\x6e\x74\47\51\x22\xa\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\72\160\x6c\x61\x63\x65\150\157\x6c\x64\x65\162\75\42\x74\x72\141\156\x73\x28\47\x61\x64\x6d\151\156\x3a\72\141\160\160\x2e\x6d\141\162\153\x65\x74\x69\156\x67\x2e\160\x72\157\x6d\x6f\x74\x69\157\x6e\163\56\143\141\x72\x74\x2d\162\165\x6c\x65\163\56\145\x64\x69\x74\56\x64\151\163\143\x6f\165\156\x74\55\x61\x6d\x6f\x75\x6e\164\x27\51\42\xa\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x2f\76\xa\xa\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\74\x78\55\x61\x64\x6d\x69\156\72\72\146\x6f\162\x6d\x2e\143\157\156\164\x72\157\x6c\55\147\x72\x6f\165\x70\x2e\x65\x72\162\157\162\x20\x63\x6f\x6e\x74\162\x6f\154\55\x6e\x61\x6d\145\x3d\x22\144\151\163\143\157\x75\x6e\164\x5f\x61\x6d\157\x75\x6e\164\x22\x20\x2f\x3e\xa\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\x20\40\40\x20\x3c\x2f\x78\x2d\x61\x64\155\151\156\x3a\72\x66\x6f\162\155\x2e\x63\157\156\164\x72\157\154\x2d\x67\x72\x6f\165\160\76\12\40\40\x20\40\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\74\x2f\144\151\x76\76\12\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x3c\x2f\x64\x69\166\x3e\xa\xa\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\74\144\x69\166\40\x63\154\x61\x73\x73\75\x22\x66\x6c\x65\170\x20\x67\141\160\55\x34\40\x6d\x61\170\x2d\x73\x6d\x3a\x66\154\x65\170\55\167\x72\141\x70\42\x3e\12\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x3c\144\x69\x76\x20\143\x6c\141\163\x73\75\x22\167\x2d\146\165\x6c\x6c\x22\76\12\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\74\x78\55\141\144\x6d\151\156\72\72\146\157\162\x6d\x2e\143\157\156\164\162\x6f\x6c\x2d\147\162\157\165\x70\x3e\12\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x3c\x78\55\141\144\155\x69\156\72\72\146\157\x72\155\56\143\x6f\156\164\162\157\x6c\55\147\162\157\165\x70\x2e\x6c\141\x62\145\154\76\xa\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\100\154\141\156\x67\50\47\x61\x64\155\151\156\x3a\72\x61\160\160\56\155\x61\162\x6b\145\164\151\156\x67\x2e\160\162\x6f\x6d\157\164\151\157\x6e\x73\56\143\x61\x72\x74\x2d\162\165\154\x65\163\x2e\x65\144\151\x74\x2e\155\141\170\x69\155\x75\155\x2d\161\x75\x61\156\164\x69\164\171\x2d\x61\154\x6c\x6f\x77\145\x64\x2d\164\x6f\x2d\x62\145\55\x64\x69\x73\143\157\x75\156\x74\145\x64\47\x29\xa\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x3c\57\170\55\x61\144\x6d\x69\x6e\72\72\x66\x6f\x72\x6d\56\143\x6f\x6e\164\x72\x6f\x6c\55\x67\162\157\x75\x70\x2e\x6c\141\x62\x65\x6c\x3e\xa\xa\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\40\74\x78\x2d\x61\144\155\x69\x6e\x3a\x3a\x66\157\162\x6d\x2e\143\157\x6e\164\162\157\x6c\x2d\x67\x72\x6f\165\160\x2e\143\x6f\156\164\162\x6f\154\12\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x74\x79\x70\x65\x3d\x22\164\145\170\x74\x22\12\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x69\x64\x3d\x22\x64\151\x73\143\157\x75\x6e\164\x5f\x71\165\x61\156\x74\151\164\171\42\xa\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\156\x61\155\x65\x3d\x22\144\151\x73\x63\157\165\x6e\x74\137\x71\x75\x61\156\x74\x69\x74\x79\42\12\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x3a\166\141\154\165\145\75\x22\x6f\x6c\144\50\47\144\151\163\143\157\x75\x6e\x74\x5f\161\x75\x61\156\164\151\164\171\47\51\x20\x3f\x3f\40\44\143\x61\162\x74\122\165\x6c\145\x2d\76\144\x69\163\143\x6f\165\156\x74\137\161\x75\x61\156\x74\x69\x74\171\x22\12\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x3a\x6c\141\142\145\154\x3d\42\164\162\141\156\x73\50\x27\141\x64\x6d\151\x6e\72\x3a\x61\x70\x70\56\x6d\141\x72\x6b\145\164\151\156\x67\56\160\x72\157\x6d\157\164\151\x6f\156\163\x2e\x63\x61\162\x74\x2d\x72\165\x6c\145\x73\x2e\145\144\x69\164\x2e\x6d\x61\170\x69\x6d\165\x6d\55\x71\165\x61\156\x74\x69\164\x79\x2d\141\x6c\154\157\x77\145\x64\55\164\157\55\x62\x65\55\144\151\163\x63\x6f\165\x6e\x74\145\x64\47\51\42\12\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\72\160\154\x61\x63\145\x68\157\154\x64\x65\162\75\42\x74\162\x61\x6e\163\x28\47\141\144\155\151\156\72\x3a\141\160\x70\56\x6d\x61\162\153\145\164\x69\x6e\147\56\x70\162\x6f\155\x6f\x74\x69\157\x6e\163\x2e\143\141\162\x74\x2d\162\x75\x6c\x65\163\x2e\x65\x64\x69\x74\x2e\x6d\x61\x78\x69\155\165\155\55\x71\165\x61\x6e\x74\151\x74\x79\55\141\154\x6c\157\x77\x65\144\x2d\x74\157\x2d\142\145\55\x64\151\163\143\x6f\x75\x6e\164\x65\144\47\51\x22\xa\40\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\57\x3e\12\12\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\x3c\x78\x2d\141\144\x6d\151\x6e\72\72\x66\157\162\155\x2e\x63\157\x6e\164\x72\157\154\55\x67\x72\x6f\165\160\56\x65\x72\x72\157\x72\40\x63\157\156\164\162\x6f\154\55\x6e\x61\155\x65\75\x22\144\x69\163\143\157\165\156\164\137\161\165\x61\x6e\x74\151\x74\x79\x22\40\57\76\12\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x3c\x2f\x78\x2d\x61\x64\155\x69\156\x3a\72\x66\x6f\162\x6d\x2e\143\x6f\x6e\164\x72\x6f\154\55\x67\x72\x6f\165\160\76\xa\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\x3c\x2f\144\x69\166\x3e\12\12\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\x3c\144\151\166\x20\x63\154\x61\163\163\75\x22\167\x2d\x66\x75\154\154\x22\76\xa\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\74\170\x2d\141\x64\155\x69\156\72\x3a\146\x6f\x72\155\x2e\x63\157\x6e\164\x72\157\x6c\55\x67\162\157\165\160\x3e\xa\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\74\x78\55\x61\144\155\151\x6e\x3a\x3a\146\x6f\x72\155\56\x63\157\x6e\x74\x72\157\154\55\147\x72\x6f\x75\160\56\154\x61\x62\x65\x6c\x3e\12\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\100\x6c\141\156\147\50\x27\141\x64\x6d\x69\156\x3a\72\141\160\x70\x2e\155\141\162\x6b\x65\x74\x69\x6e\147\x2e\x70\162\157\x6d\157\164\x69\x6f\x6e\163\x2e\143\141\x72\x74\55\x72\165\x6c\x65\163\56\x65\x64\x69\164\56\142\x75\x79\x2d\170\55\161\165\x61\156\x74\151\x74\171\x27\x29\xa\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\74\x2f\x78\55\x61\144\155\151\156\x3a\72\x66\157\x72\155\56\143\157\x6e\164\x72\x6f\x6c\55\147\162\157\165\x70\56\154\x61\142\x65\154\76\xa\xa\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x3c\x78\x2d\x61\x64\155\151\x6e\72\72\x66\157\162\x6d\x2e\x63\x6f\x6e\x74\162\x6f\154\55\147\x72\157\x75\x70\56\x63\157\x6e\164\x72\157\154\xa\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\164\x79\x70\145\75\x22\x74\145\x78\164\42\12\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x6e\x61\155\145\x3d\42\144\x69\163\143\x6f\x75\x6e\164\x5f\x73\x74\145\x70\x22\12\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\72\166\x61\x6c\165\145\75\42\157\154\144\50\x27\144\x69\x73\143\x6f\x75\156\x74\137\x73\164\x65\160\x27\x29\40\x3f\77\x20\44\x63\x61\162\x74\122\x75\x6c\x65\x2d\x3e\x64\151\163\143\x6f\x75\x6e\x74\x5f\163\x74\145\160\x22\12\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x69\x64\75\42\144\x69\163\x63\157\165\x6e\164\x5f\x73\164\x65\x70\x22\xa\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\72\154\x61\142\x65\x6c\x3d\x22\164\162\x61\x6e\163\50\x27\x61\x64\x6d\151\x6e\x3a\x3a\x61\x70\x70\x2e\x6d\141\162\x6b\145\x74\x69\x6e\x67\56\160\162\157\x6d\x6f\164\151\157\x6e\163\x2e\143\141\162\x74\55\x72\x75\x6c\145\x73\x2e\145\x64\x69\164\56\142\x75\x79\x2d\x78\55\161\165\x61\x6e\164\x69\164\x79\47\51\x22\xa\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\x3a\x70\154\x61\143\x65\x68\x6f\154\144\x65\162\75\42\x74\x72\141\x6e\x73\50\x27\x61\x64\x6d\x69\156\72\72\x61\x70\160\56\x6d\141\162\x6b\x65\x74\x69\x6e\147\x2e\160\162\x6f\x6d\157\164\151\157\156\x73\56\x63\x61\x72\164\55\162\165\154\x65\x73\56\x65\144\x69\x74\x2e\142\165\171\x2d\x78\x2d\161\165\141\156\164\151\164\x79\47\x29\42\xa\40\40\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\57\x3e\12\xa\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\74\x78\x2d\141\144\155\x69\x6e\72\x3a\146\157\162\x6d\56\143\157\156\x74\162\x6f\154\x2d\147\x72\x6f\x75\x70\56\145\162\x72\157\x72\40\143\x6f\x6e\164\162\x6f\x6c\55\x6e\141\x6d\145\75\x22\144\x69\163\x63\157\x75\x6e\x74\137\x73\164\x65\160\42\x20\x2f\76\12\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\x20\74\57\x78\x2d\x61\x64\155\x69\156\72\72\x66\157\162\x6d\56\143\x6f\x6e\164\162\157\154\x2d\x67\x72\157\165\x70\76\12\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\74\57\x64\151\166\76\12\40\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\74\57\x64\151\166\x3e\12\12\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\74\144\151\166\40\143\x6c\x61\163\163\75\x22\146\x6c\x65\x78\x20\x67\141\160\x2d\x34\40\155\141\x78\55\x73\155\72\x66\154\x65\170\55\167\x72\141\x70\x22\76\xa\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x3c\144\151\x76\40\x63\154\x61\163\163\x3d\42\x77\x2d\x66\x75\x6c\x6c\42\x3e\12\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x40\160\150\x70\50\x24\x73\x65\154\x65\x63\164\145\x64\x4f\x70\164\151\x6f\156\40\75\x20\157\x6c\x64\x28\47\141\x70\x70\154\171\137\164\157\x5f\163\x68\x69\x70\160\151\156\147\x27\x29\40\77\77\40\44\x63\x61\162\164\x52\165\x6c\x65\x2d\x3e\x61\160\x70\154\x79\137\164\157\137\x73\x68\151\160\x70\x69\x6e\x67\51\12\12\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x3c\170\x2d\141\x64\x6d\151\156\x3a\x3a\146\157\x72\155\56\143\157\x6e\x74\162\x6f\x6c\55\147\x72\x6f\165\160\x3e\12\x20\40\40\40\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\74\x78\x2d\141\144\155\151\x6e\72\72\146\x6f\x72\155\56\x63\x6f\156\164\162\x6f\154\55\x67\x72\x6f\165\x70\x2e\x6c\141\142\145\154\76\xa\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\100\154\141\156\x67\x28\x27\x61\x64\x6d\151\x6e\72\72\141\160\x70\x2e\155\141\x72\153\x65\x74\151\x6e\x67\56\160\162\x6f\x6d\157\x74\x69\x6f\156\x73\x2e\143\x61\162\x74\55\x72\x75\x6c\x65\163\x2e\145\x64\x69\164\56\x61\x70\x70\x6c\171\x2d\x74\x6f\x2d\x73\x68\151\x70\x70\151\x6e\147\x27\51\xa\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x3c\57\170\55\141\x64\155\151\x6e\x3a\x3a\x66\157\162\x6d\56\x63\x6f\156\x74\x72\x6f\x6c\x2d\x67\x72\x6f\165\x70\x2e\154\x61\142\x65\154\x3e\12\12\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\40\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\74\170\x2d\x61\144\x6d\151\x6e\x3a\x3a\146\157\162\x6d\x2e\143\x6f\x6e\164\162\x6f\x6c\x2d\x67\x72\157\x75\x70\56\x63\x6f\x6e\x74\x72\x6f\x6c\12\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\164\171\x70\x65\x3d\x22\163\145\154\x65\x63\164\x22\12\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\x69\x64\75\x22\x61\160\x70\x6c\171\x5f\164\157\x5f\163\x68\x69\x70\x70\151\x6e\x67\42\xa\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\40\156\141\x6d\145\x3d\42\x61\160\160\x6c\x79\137\164\x6f\x5f\x73\x68\x69\160\x70\x69\x6e\x67\x22\12\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x3a\x76\141\154\x75\145\75\x22\157\154\144\50\x27\x61\160\x70\x6c\x79\x5f\164\x6f\137\x73\x68\x69\x70\160\151\156\x67\x27\x29\x20\x3f\77\x20\x24\143\x61\x72\x74\x52\165\x6c\145\55\x3e\141\160\x70\154\171\x5f\x74\157\x5f\163\150\x69\x70\160\151\156\147\42\12\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\72\154\x61\142\x65\x6c\x3d\x22\164\162\x61\x6e\163\50\x27\x61\144\x6d\x69\x6e\x3a\72\141\x70\160\x2e\x6d\141\x72\153\145\164\x69\x6e\x67\56\x70\x72\157\155\157\164\151\x6f\156\163\x2e\x63\141\162\x74\x2d\x72\x75\154\x65\x73\x2e\145\x64\151\x74\x2e\141\x70\160\x6c\171\55\164\x6f\55\163\x68\151\x70\x70\x69\156\x67\x27\x29\42\12\40\x20\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x3a\x70\154\141\143\145\150\x6f\x6c\x64\x65\x72\75\x22\164\x72\141\x6e\x73\50\x27\x61\x64\x6d\x69\x6e\72\x3a\x61\160\160\56\x6d\x61\x72\x6b\145\164\151\x6e\x67\56\160\x72\x6f\x6d\x6f\x74\x69\157\156\x73\x2e\143\x61\x72\164\55\162\165\x6c\x65\x73\56\x65\x64\x69\164\x2e\141\160\160\154\171\x2d\x74\157\x2d\x73\150\x69\x70\160\151\x6e\147\x27\51\42\xa\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\40\72\72\x64\x69\x73\x61\142\x6c\145\x64\x3d\42\141\x63\164\x69\x6f\156\x54\171\160\x65\40\x3d\x3d\40\47\143\141\x72\164\137\146\x69\170\x65\144\x27\42\xa\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\40\76\12\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\74\x6f\160\164\x69\157\x6e\12\40\40\40\40\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x76\141\154\165\x65\x3d\x22\60\x22\xa\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\173\173\40\x21\40\44\x73\145\x6c\x65\x63\164\x65\x64\x4f\160\164\151\x6f\x6e\40\x3f\40\47\163\145\154\x65\x63\x74\x65\x64\x27\40\72\x20\47\47\x20\x7d\175\12\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x3e\12\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x40\154\x61\x6e\147\50\x27\x61\x64\x6d\151\x6e\x3a\x3a\141\160\x70\x2e\x6d\141\x72\153\x65\164\151\156\x67\56\x70\x72\x6f\x6d\157\x74\151\x6f\156\163\56\143\141\162\x74\x2d\x72\165\154\x65\163\56\x65\x64\x69\164\56\156\x6f\x27\51\12\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\74\x2f\157\x70\x74\x69\x6f\x6e\x3e\xa\12\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\74\157\160\x74\151\x6f\156\xa\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x76\x61\154\x75\x65\75\42\x31\x22\12\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\173\173\x20\x24\163\145\154\x65\143\164\x65\x64\117\160\164\151\x6f\156\x20\77\40\x27\x73\x65\154\x65\143\164\x65\x64\x27\40\72\x20\47\47\40\175\x7d\12\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x3e\xa\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\x40\x6c\141\156\147\50\x27\141\x64\x6d\151\156\x3a\x3a\141\x70\x70\x2e\x6d\x61\x72\x6b\145\164\151\x6e\147\56\x70\x72\157\155\157\164\151\x6f\x6e\163\x2e\143\x61\x72\164\55\162\165\x6c\145\x73\56\x65\144\151\x74\56\x79\145\x73\47\x29\12\40\x20\40\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\74\57\x6f\160\164\x69\157\x6e\76\12\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\74\x2f\170\x2d\141\x64\155\x69\x6e\x3a\72\x66\157\x72\x6d\56\x63\157\x6e\164\x72\x6f\154\55\x67\162\157\165\160\56\143\x6f\156\164\162\157\x6c\x3e\12\xa\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\74\170\55\x61\144\155\151\156\72\x3a\x66\157\162\x6d\56\x63\x6f\x6e\x74\162\157\x6c\x2d\x67\x72\157\165\x70\56\145\162\x72\x6f\162\40\x63\157\156\x74\162\x6f\x6c\55\x6e\x61\x6d\x65\75\42\x61\160\x70\154\171\x5f\x74\157\x5f\x73\x68\151\160\160\x69\156\147\42\40\x2f\76\12\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\x3c\x2f\170\x2d\141\x64\x6d\x69\x6e\72\x3a\146\x6f\162\x6d\x2e\143\157\156\x74\162\x6f\154\x2d\x67\x72\157\x75\x70\76\12\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\40\x3c\57\144\151\x76\76\xa\12\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x3c\x64\151\166\40\143\154\141\163\163\x3d\x22\x77\55\146\165\154\x6c\42\76\12\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\100\160\150\x70\x28\44\163\145\154\145\143\x74\x65\x64\117\160\x74\x69\x6f\156\x20\75\x20\x6f\x6c\144\50\47\x66\162\145\x65\x5f\163\x68\151\160\x70\151\156\x67\x27\51\x20\77\x3f\x20\x24\143\x61\x72\164\x52\x75\154\x65\55\76\x66\162\145\145\137\x73\150\x69\x70\160\x69\156\x67\51\12\12\40\40\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x3c\x78\x2d\x61\x64\155\x69\156\72\72\x66\157\x72\155\56\143\157\x6e\x74\162\157\x6c\55\147\162\157\x75\x70\x3e\xa\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\40\40\74\170\55\141\144\155\151\156\72\x3a\146\157\162\x6d\x2e\143\157\x6e\x74\x72\x6f\154\55\x67\162\x6f\x75\160\56\154\x61\x62\145\154\76\12\40\x20\40\40\40\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x40\x6c\x61\x6e\x67\50\x27\x61\144\155\151\156\72\x3a\141\160\160\56\155\x61\x72\153\x65\164\x69\156\147\56\x70\x72\x6f\x6d\157\x74\x69\x6f\156\x73\56\143\x61\x72\164\x2d\162\165\154\145\x73\x2e\145\144\151\164\x2e\x66\162\145\145\55\163\x68\x69\160\x70\x69\156\x67\47\x29\xa\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\40\40\74\57\170\55\141\x64\155\151\x6e\72\72\x66\157\x72\x6d\56\x63\x6f\156\x74\x72\x6f\154\55\x67\162\157\x75\x70\x2e\154\141\x62\145\x6c\76\xa\xa\40\40\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\40\40\x3c\170\55\x61\144\x6d\151\x6e\x3a\72\146\157\162\155\56\x63\157\156\164\162\x6f\x6c\x2d\147\162\x6f\x75\x70\56\143\157\x6e\x74\x72\157\x6c\xa\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x74\x79\x70\145\75\42\163\x65\x6c\x65\x63\x74\x22\12\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x69\144\x3d\42\x66\162\x65\x65\x5f\163\x68\151\x70\x70\151\156\x67\x22\xa\40\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x6e\141\x6d\x65\x3d\x22\x66\x72\145\x65\x5f\x73\x68\x69\x70\x70\151\x6e\x67\x22\12\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\x3a\166\141\x6c\165\145\75\42\x6f\154\144\x28\47\x66\162\x65\x65\x5f\x73\x68\x69\x70\x70\x69\156\x67\47\51\x20\77\77\x20\44\x63\141\162\164\122\165\154\x65\55\76\x66\162\145\145\137\x73\x68\x69\160\x70\x69\156\x67\42\xa\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x3a\154\x61\142\145\x6c\75\x22\x74\162\141\x6e\163\50\47\141\144\x6d\x69\156\x3a\72\x61\160\x70\x2e\155\141\x72\153\145\164\x69\x6e\147\x2e\160\x72\x6f\155\x6f\164\x69\x6f\156\x73\x2e\x63\141\162\164\55\162\165\x6c\145\x73\x2e\x65\x64\151\164\56\146\162\x65\x65\x2d\x73\x68\151\x70\160\151\x6e\147\47\x29\42\12\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x3a\160\154\x61\x63\x65\150\157\154\144\145\x72\75\x22\x74\x72\141\156\163\50\x27\x61\144\155\151\156\x3a\x3a\141\160\x70\x2e\155\x61\x72\153\x65\x74\151\x6e\x67\56\x70\162\157\155\157\x74\151\157\x6e\163\56\x63\141\162\x74\x2d\x72\165\154\x65\163\56\145\144\x69\x74\56\x66\x72\145\x65\55\163\150\x69\160\x70\x69\156\x67\x27\x29\42\xa\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\x3e\12\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x3c\157\x70\164\151\157\x6e\xa\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\166\141\x6c\165\145\x3d\42\60\42\xa\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\x7b\173\40\x21\40\44\163\x65\x6c\145\x63\x74\x65\x64\117\x70\164\x69\157\156\40\x3f\40\47\163\x65\x6c\x65\143\164\145\x64\x27\x20\72\40\x27\47\40\x7d\175\xa\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\76\12\40\x20\40\40\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x40\154\141\x6e\147\50\47\141\144\155\151\156\72\x3a\x61\160\x70\56\x6d\x61\x72\153\145\164\151\156\147\x2e\x70\162\x6f\155\157\164\x69\x6f\x6e\x73\x2e\143\x61\x72\x74\55\x72\165\x6c\145\x73\56\145\x64\151\x74\x2e\x6e\x6f\47\51\12\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\74\x2f\x6f\160\x74\151\x6f\x6e\76\12\12\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\74\157\x70\x74\x69\x6f\x6e\12\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\166\x61\x6c\165\145\75\42\61\42\xa\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x7b\173\40\x24\x73\145\x6c\x65\x63\164\x65\x64\x4f\x70\x74\x69\x6f\x6e\x20\x3f\x20\x27\x73\145\x6c\145\143\x74\145\x64\x27\x20\x3a\x20\x27\47\x20\175\x7d\12\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\76\12\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x40\154\x61\x6e\x67\x28\47\x61\144\x6d\151\156\72\x3a\141\x70\x70\x2e\x6d\141\162\x6b\x65\x74\151\156\147\x2e\x70\x72\157\155\x6f\164\x69\x6f\156\163\x2e\x63\141\162\164\x2d\162\165\x6c\145\x73\56\x65\144\x69\x74\56\171\x65\x73\x27\51\xa\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\x3c\x2f\157\160\x74\151\157\156\76\xa\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\74\57\170\55\141\x64\155\151\x6e\72\x3a\146\x6f\x72\155\x2e\143\x6f\x6e\x74\x72\157\x6c\55\147\162\x6f\165\160\x2e\x63\x6f\x6e\x74\x72\x6f\154\x3e\xa\12\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\40\40\74\x78\x2d\x61\x64\x6d\151\156\x3a\72\x66\x6f\x72\155\x2e\143\157\156\164\x72\157\x6c\x2d\x67\x72\x6f\165\x70\56\x65\162\162\x6f\x72\x20\x63\x6f\156\164\x72\x6f\x6c\x2d\x6e\x61\x6d\145\x3d\x22\146\x72\x65\x65\x5f\163\150\x69\x70\160\x69\156\x67\42\x20\x2f\x3e\xa\x20\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\40\40\40\40\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\40\74\x2f\170\x2d\x61\x64\x6d\151\156\72\x3a\146\157\x72\x6d\56\x63\157\x6e\x74\x72\x6f\154\55\147\x72\157\x75\160\x3e\xa\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\40\x20\x20\40\74\x2f\144\151\166\76\12\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x3c\57\x64\x69\166\x3e\xa\12\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\74\x64\x69\x76\x20\x63\x6c\141\163\x73\75\x22\x66\x6c\145\x78\x20\147\x61\x70\x2d\64\40\x6a\x75\x73\164\151\146\x79\x2d\x62\145\164\x77\x65\x65\x6e\x20\x6d\x61\x78\x2d\x73\155\72\146\x6c\145\170\55\x77\162\x61\x70\x22\76\12\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\74\x64\151\x76\x20\x63\x6c\141\x73\x73\x3d\x22\x77\x2d\146\165\x6c\154\42\x3e\12\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\x40\160\150\x70\x28\44\x73\x65\154\x65\143\x74\x65\144\117\160\x74\151\x6f\x6e\x20\75\x20\x6f\154\144\50\47\x65\x6e\x64\137\x6f\x74\150\x65\x72\x5f\x72\165\x6c\x65\163\47\51\40\x3f\77\40\44\143\141\x72\x74\122\x75\x6c\x65\x2d\x3e\x65\156\144\x5f\x6f\164\150\x65\162\137\x72\x75\154\x65\x73\51\12\12\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\74\170\x2d\x61\x64\155\151\156\x3a\72\x66\157\x72\155\56\143\157\x6e\x74\x72\x6f\154\55\x67\162\157\x75\x70\x20\x63\154\141\163\x73\75\42\x21\155\142\55\60\x22\76\12\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x3c\170\x2d\141\x64\x6d\151\x6e\x3a\x3a\x66\x6f\162\155\56\x63\x6f\x6e\164\x72\157\x6c\55\x67\162\x6f\165\160\56\x6c\x61\x62\145\x6c\76\xa\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\100\154\x61\x6e\147\x28\47\141\144\155\x69\156\72\x3a\141\x70\x70\x2e\x6d\141\162\153\x65\x74\151\156\147\x2e\160\162\x6f\x6d\x6f\x74\x69\157\156\x73\56\x63\141\162\164\x2d\x72\165\x6c\145\163\x2e\x65\x64\151\164\x2e\x65\156\x64\55\x6f\146\x2d\157\164\x68\x65\x72\x2d\162\165\x6c\145\163\47\51\12\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\x3c\57\x78\x2d\x61\x64\155\151\156\x3a\x3a\146\x6f\x72\x6d\56\x63\x6f\x6e\x74\162\x6f\x6c\55\147\162\157\x75\x70\56\x6c\141\x62\x65\x6c\76\12\xa\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x3c\x78\x2d\141\144\x6d\x69\156\72\72\x66\x6f\x72\155\x2e\x63\x6f\156\164\x72\157\154\x2d\147\x72\x6f\165\x70\x2e\143\x6f\156\164\162\x6f\x6c\12\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\x74\171\160\145\x3d\x22\163\x65\x6c\x65\143\164\x22\12\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\143\x6c\x61\163\163\75\x22\41\167\55\x31\x2f\62\40\155\x61\170\55\163\155\72\x21\x77\x2d\x66\165\x6c\154\x22\12\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x69\x64\x3d\42\145\x6e\x64\137\x6f\164\150\x65\x72\x5f\x72\165\154\x65\163\42\xa\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\156\141\x6d\x65\x3d\42\x65\156\x64\137\157\164\150\145\162\137\x72\x75\x6c\145\163\x22\12\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\40\x3a\166\x61\x6c\x75\x65\x3d\42\157\x6c\x64\x28\x27\145\x6e\144\137\x6f\x74\150\145\162\x5f\162\x75\x6c\x65\163\47\x29\x20\77\77\40\44\143\141\162\164\122\165\154\145\x2d\76\145\x6e\144\137\x6f\164\x68\145\162\x5f\x72\165\154\145\x73\42\xa\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\x3a\x6c\x61\x62\145\154\x3d\x22\164\x72\x61\156\x73\x28\47\141\144\155\151\156\72\72\141\x70\x70\x2e\155\x61\162\153\145\x74\x69\156\147\56\x70\162\157\x6d\x6f\x74\x69\157\156\163\x2e\143\141\162\164\55\162\x75\154\145\163\x2e\145\x64\151\x74\x2e\145\156\144\55\157\146\55\157\x74\x68\x65\162\55\x72\165\154\x65\163\x27\x29\42\12\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\x20\40\x20\72\x70\x6c\x61\143\x65\x68\157\154\x64\x65\x72\x3d\x22\164\x72\x61\156\163\x28\47\141\144\155\151\x6e\72\x3a\141\x70\x70\56\x6d\x61\x72\x6b\x65\164\151\156\x67\x2e\x70\x72\x6f\x6d\157\164\151\157\156\163\56\143\x61\x72\164\55\x72\x75\x6c\145\x73\x2e\145\x64\151\164\x2e\x65\156\144\x2d\x6f\x66\x2d\157\164\x68\145\x72\55\162\x75\x6c\x65\x73\47\x29\x22\xa\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\76\12\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x3c\157\x70\164\151\x6f\156\12\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\x20\x76\x61\154\x75\x65\x3d\42\60\42\xa\x20\40\40\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\173\173\40\x21\40\x24\x73\145\154\145\143\x74\x65\144\117\160\x74\x69\x6f\x6e\40\x3f\40\47\163\145\x6c\x65\143\x74\x65\144\x27\x20\72\40\x27\47\40\175\x7d\xa\x20\x20\40\40\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\76\xa\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x40\154\x61\x6e\x67\x28\47\141\144\x6d\151\x6e\x3a\x3a\x61\x70\x70\x2e\155\x61\x72\153\145\x74\151\156\147\56\x70\x72\x6f\x6d\157\x74\151\157\x6e\163\x2e\x63\141\162\164\55\x72\x75\154\145\x73\x2e\145\144\x69\164\x2e\156\157\47\x29\12\x20\40\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\74\57\x6f\160\x74\x69\x6f\x6e\x3e\12\xa\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x3c\157\x70\164\151\x6f\x6e\12\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\166\141\x6c\165\145\75\x22\x31\x22\12\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\173\173\x20\44\x73\145\x6c\x65\143\164\x65\144\117\160\x74\x69\x6f\x6e\40\77\40\x27\163\x65\x6c\145\x63\164\145\144\47\x20\x3a\x20\x27\47\40\x7d\175\xa\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x3e\12\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x40\x6c\x61\156\x67\x28\x27\x61\x64\155\151\x6e\72\x3a\x61\x70\160\x2e\x6d\x61\x72\x6b\145\164\x69\156\147\56\160\162\x6f\155\157\x74\151\157\156\163\x2e\x63\141\162\164\55\162\x75\154\x65\x73\x2e\145\x64\x69\x74\x2e\x79\145\163\x27\x29\12\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x3c\57\x6f\160\x74\151\x6f\x6e\76\12\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\74\57\170\x2d\141\x64\155\151\156\72\72\x66\x6f\162\155\56\x63\x6f\x6e\164\162\157\x6c\x2d\147\x72\157\x75\160\x2e\x63\x6f\156\164\162\157\154\x3e\xa\xa\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\74\170\x2d\141\144\155\151\156\x3a\72\x66\157\162\x6d\56\x63\x6f\x6e\x74\162\157\154\x2d\147\x72\157\165\x70\56\x65\162\x72\x6f\x72\x20\x63\157\156\164\x72\157\154\x2d\156\x61\155\145\75\42\145\x6e\144\x5f\x6f\164\150\145\x72\x5f\162\165\154\x65\163\42\x20\x2f\x3e\xa\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x3c\x2f\x78\x2d\x61\x64\x6d\x69\156\72\72\x66\x6f\x72\155\x2e\143\157\x6e\x74\x72\157\x6c\55\147\162\x6f\x75\x70\76\xa\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\40\40\40\40\x20\40\x20\40\40\x20\40\x3c\x2f\144\x69\166\76\xa\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\40\x3c\x2f\x64\x69\166\x3e\xa\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x3c\57\x64\151\166\x3e\xa\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\74\x2f\144\151\166\x3e\xa\xa\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x7b\x21\x21\x20\166\x69\x65\x77\137\162\145\x6e\144\145\x72\x5f\145\166\145\x6e\x74\50\x27\x62\x61\x67\151\163\x74\157\x2e\x61\x64\155\151\156\56\155\x61\x72\x6b\x65\x74\x69\x6e\147\x2e\x70\162\157\x6d\x6f\x74\151\157\156\x73\x2e\143\x61\162\x74\137\162\165\x6c\x65\163\56\145\144\151\x74\56\x63\141\x72\144\x2e\x61\143\x74\151\x6f\x6e\x73\x2e\x61\146\164\x65\162\47\51\x20\41\x21\175\12\xa\40\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\74\57\144\151\166\x3e\12\xa\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\74\41\55\x2d\x20\x52\151\147\x68\164\40\163\165\x62\55\143\157\155\160\157\156\145\156\164\40\x2d\55\76\12\40\40\x20\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\74\x64\151\x76\x20\143\154\141\163\163\75\x22\146\x6c\145\x78\x20\146\x6c\x65\x78\55\143\157\154\x20\x67\141\160\x2d\62\40\x77\x2d\x5b\x33\66\x30\160\170\135\x20\x6d\141\x78\55\x77\x2d\146\165\x6c\154\40\155\x61\170\55\x73\155\72\x77\55\146\165\154\154\x22\76\12\12\40\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\173\x21\x21\40\x76\x69\145\167\x5f\x72\x65\156\144\145\162\x5f\145\166\145\x6e\164\x28\47\142\x61\x67\x69\163\164\157\56\141\x64\155\x69\x6e\56\155\x61\162\x6b\145\164\x69\x6e\147\56\160\162\157\155\157\164\151\x6f\156\x73\56\x63\x61\162\164\x5f\x72\x75\154\x65\x73\56\x65\144\151\x74\56\x63\141\162\144\x2e\141\x63\x63\157\162\144\151\157\x6e\x2e\163\145\x74\164\151\x6e\147\163\56\142\145\x66\157\162\x65\x27\x29\x20\41\x21\x7d\xa\12\40\40\40\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\x3c\x21\x2d\x2d\x20\123\x65\164\164\x69\x6e\147\163\40\55\x2d\76\xa\40\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\74\x78\x2d\x61\x64\x6d\x69\156\72\72\x61\143\x63\x6f\162\144\151\x6f\156\76\xa\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x3c\170\55\x73\154\157\x74\x3a\150\145\141\x64\145\x72\76\12\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\74\x70\40\x63\154\141\x73\x73\x3d\x22\160\x2d\x32\56\65\40\164\x65\170\x74\55\147\162\x61\x79\55\x38\x30\60\40\x64\141\x72\x6b\x3a\164\145\170\x74\x2d\x77\150\151\164\x65\40\x74\145\x78\164\x2d\142\141\163\x65\x20\x66\x6f\156\164\55\x73\145\x6d\x69\x62\157\x6c\144\x22\x3e\12\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\40\x40\154\141\x6e\x67\50\47\x61\x64\155\x69\x6e\x3a\72\141\160\x70\56\155\141\162\153\x65\164\151\156\147\56\x70\x72\157\x6d\157\164\x69\157\x6e\163\x2e\143\x61\x72\164\55\162\165\x6c\145\163\x2e\x65\144\151\x74\56\x73\145\x74\x74\151\x6e\147\163\47\51\12\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\74\57\160\76\xa\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\74\57\170\55\163\154\157\164\76\12\xa\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\74\170\55\x73\x6c\157\164\72\143\x6f\156\164\x65\x6e\x74\x3e\12\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\74\x78\55\141\144\x6d\x69\156\72\72\146\x6f\162\155\x2e\143\157\x6e\164\162\x6f\x6c\x2d\147\x72\x6f\165\160\x3e\12\40\40\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\40\40\40\x20\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\x3c\170\x2d\141\144\x6d\x69\x6e\x3a\x3a\146\157\162\155\x2e\x63\x6f\x6e\x74\162\157\x6c\x2d\147\162\x6f\165\x70\x2e\154\141\142\145\154\76\xa\40\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\100\154\x61\x6e\147\50\x27\141\x64\x6d\x69\156\72\72\141\x70\160\56\x6d\x61\x72\153\x65\164\151\x6e\x67\56\x70\162\x6f\x6d\x6f\x74\151\157\156\x73\56\x63\x61\x72\164\x2d\162\165\154\145\x73\x2e\x65\x64\x69\164\x2e\x70\162\x69\x6f\x72\151\164\171\x27\x29\12\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x3c\57\x78\55\x61\x64\x6d\x69\156\x3a\x3a\146\157\x72\x6d\x2e\143\157\x6e\164\162\x6f\x6c\55\147\162\x6f\x75\160\56\x6c\x61\142\145\154\x3e\xa\xa\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\74\170\x2d\x61\144\155\x69\156\x3a\x3a\146\157\x72\155\56\x63\157\156\x74\x72\x6f\154\55\x67\162\x6f\165\x70\x2e\143\157\x6e\164\x72\x6f\154\12\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\164\171\160\145\x3d\42\164\145\170\x74\42\xa\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x69\144\x3d\x22\163\x6f\x72\x74\x5f\x6f\162\144\x65\x72\x22\12\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\x6e\x61\x6d\x65\x3d\x22\x73\x6f\x72\164\x5f\157\x72\144\145\x72\42\12\40\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x3a\x76\x61\x6c\165\145\75\42\x6f\x6c\144\50\47\163\x6f\x72\x74\x5f\x6f\x72\144\x65\x72\47\51\x20\x3f\x3f\40\44\143\141\162\164\x52\x75\x6c\x65\55\76\163\157\x72\164\x5f\x6f\x72\144\x65\162\42\xa\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\72\x6c\x61\142\x65\154\75\42\164\162\x61\x6e\163\x28\47\141\x64\155\151\156\72\72\141\x70\x70\x2e\155\x61\x72\153\145\x74\x69\156\147\x2e\160\162\x6f\x6d\x6f\164\151\x6f\156\163\x2e\143\x61\x72\x74\x2d\162\165\x6c\x65\x73\x2e\x65\x64\x69\164\x2e\x70\x72\x69\x6f\x72\151\x74\171\x27\51\42\12\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x3a\x70\154\141\143\145\150\157\x6c\x64\x65\x72\x3d\x22\x74\162\x61\x6e\163\x28\47\x61\144\x6d\x69\x6e\72\72\x61\x70\x70\x2e\x6d\x61\x72\153\x65\x74\151\156\147\x2e\x70\x72\157\x6d\x6f\164\151\157\156\x73\56\x63\141\162\x74\x2d\x72\165\154\x65\x73\56\x65\x64\151\164\56\160\162\x69\157\x72\x69\164\171\47\x29\42\xa\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x2f\x3e\12\12\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\74\x78\55\x61\144\x6d\x69\156\x3a\x3a\x66\x6f\162\x6d\x2e\143\157\156\x74\162\157\154\x2d\147\162\157\165\160\x2e\145\162\x72\157\x72\x20\143\157\x6e\164\x72\x6f\154\55\156\x61\155\x65\x3d\x22\163\x6f\162\x74\x5f\x6f\x72\x64\145\162\x22\x20\x2f\x3e\12\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\74\57\x78\55\x61\144\155\151\x6e\x3a\x3a\x66\x6f\x72\x6d\x2e\143\157\156\164\x72\157\154\55\147\x72\x6f\x75\x70\x3e\xa\xa\40\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\100\160\x68\x70\x28\x24\163\x65\x6c\145\x63\164\x65\x64\117\160\x74\151\157\x6e\x49\144\x73\40\75\40\157\x6c\144\x28\x27\x63\x68\x61\156\156\x65\x6c\163\x27\x29\40\77\x3f\40\x24\x63\x61\x72\x74\122\x75\154\145\55\76\143\150\x61\156\x6e\x65\x6c\x73\55\x3e\x70\x6c\165\x63\153\x28\x27\x69\x64\47\x29\x2d\76\x74\x6f\101\x72\162\141\x79\50\51\x29\12\40\x20\x20\x20\40\40\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x3c\41\55\x2d\x43\x68\x61\156\x6e\145\x6c\x2d\x2d\x3e\40\xa\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\74\x64\x69\x76\x20\143\x6c\141\x73\163\75\42\155\x62\55\62\x2e\x35\x22\76\xa\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x3c\170\x2d\x61\x64\155\x69\x6e\72\72\x66\157\162\x6d\x2e\x63\157\156\164\x72\157\x6c\55\x67\162\x6f\x75\x70\x2e\x6c\141\142\x65\154\40\x63\x6c\x61\x73\x73\x3d\x22\162\145\x71\x75\151\x72\x65\x64\42\x3e\12\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x40\154\x61\x6e\x67\x28\x27\141\x64\x6d\151\156\72\72\141\x70\160\56\x6d\141\162\x6b\145\164\151\x6e\x67\56\x70\x72\157\x6d\x6f\x74\x69\157\x6e\x73\56\x63\x61\162\x74\x2d\162\165\154\x65\x73\56\x65\x64\x69\164\56\143\x68\141\x6e\x6e\145\x6c\163\x27\51\xa\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\74\57\x78\x2d\141\144\x6d\x69\156\72\72\146\157\x72\x6d\56\143\x6f\156\164\x72\x6f\154\x2d\147\x72\x6f\165\160\56\154\141\x62\145\154\x3e\xa\12\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\100\x66\x6f\162\145\x61\143\150\x28\143\157\162\145\50\x29\x2d\76\147\145\164\x41\154\x6c\103\150\141\156\156\x65\x6c\x73\50\x29\x20\141\x73\40\44\143\150\x61\156\156\x65\154\x29\xa\40\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x3c\x78\55\141\144\155\x69\x6e\x3a\72\146\157\x72\x6d\x2e\x63\157\x6e\164\x72\x6f\154\55\147\162\157\x75\160\40\x63\154\x61\163\163\x3d\42\x66\154\145\170\40\x69\x74\x65\155\163\55\x63\145\156\164\145\x72\40\x67\141\x70\55\62\56\x35\x20\41\x6d\x62\55\x32\x22\x3e\12\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\40\x20\x3c\x78\x2d\x61\x64\x6d\151\156\x3a\x3a\146\157\162\x6d\56\143\157\156\x74\x72\x6f\x6c\x2d\x67\162\x6f\x75\x70\x2e\x63\157\x6e\164\162\157\x6c\12\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x74\x79\160\x65\75\x22\x63\x68\145\x63\153\x62\x6f\170\42\12\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\x3a\151\x64\x3d\42\x27\143\150\x61\156\x6e\145\x6c\137\47\x20\x2e\40\x27\137\47\x20\x2e\40\44\143\x68\141\x6e\156\x65\154\55\76\151\x64\42\12\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\x6e\x61\x6d\x65\x3d\42\x63\x68\x61\156\156\145\154\x73\x5b\135\42\12\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\162\x75\154\x65\x73\x3d\42\162\145\x71\165\x69\162\145\144\x22\xa\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\72\166\x61\x6c\165\145\75\42\44\143\150\x61\156\x6e\x65\154\x2d\76\x69\144\x22\xa\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x3a\x66\x6f\x72\x3d\x22\x27\x63\150\x61\156\156\x65\154\x5f\x27\x20\x2e\x20\x27\137\47\40\x2e\40\44\x63\x68\x61\156\156\x65\x6c\55\x3e\x69\x64\42\12\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\40\72\x6c\x61\142\x65\154\x3d\x22\x74\162\x61\x6e\163\x28\x27\x61\x64\155\151\156\x3a\x3a\x61\160\x70\x2e\155\x61\162\x6b\145\x74\x69\156\x67\56\160\x72\157\x6d\x6f\164\x69\157\x6e\x73\x2e\x63\141\x72\x74\x2d\162\165\x6c\145\163\x2e\145\144\151\164\56\x63\x68\141\156\156\145\x6c\163\x27\51\x22\xa\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\40\x20\40\40\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\x3a\143\150\x65\x63\153\145\144\75\x22\x69\156\x5f\x61\162\x72\x61\171\x28\44\143\150\x61\156\x6e\145\154\x2d\76\x69\x64\54\40\44\163\x65\x6c\x65\143\x74\145\144\117\x70\164\151\157\x6e\111\x64\163\x29\x22\12\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x2f\76\xa\12\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\40\40\x3c\x6c\x61\142\145\154\xa\40\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\143\x6c\141\x73\x73\x3d\42\x74\x65\170\x74\55\x78\x73\x20\164\x65\x78\x74\55\x67\162\141\171\x2d\x36\60\60\40\x64\141\x72\x6b\72\164\145\170\x74\55\147\162\141\x79\55\63\x30\60\x20\146\x6f\156\x74\55\155\145\144\151\x75\155\x20\x63\165\162\x73\x6f\162\x2d\x70\157\151\x6e\x74\145\162\x22\xa\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\x66\x6f\x72\x3d\x22\173\173\40\x27\143\x68\141\x6e\156\145\x6c\137\x27\x20\56\x20\x27\x5f\47\x20\56\x20\44\x63\150\x61\x6e\156\145\x6c\x2d\x3e\151\x64\40\x7d\x7d\42\12\40\x20\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\76\12\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x7b\x7b\40\x63\157\162\145\x28\51\x2d\x3e\147\x65\164\x43\x68\x61\156\x6e\x65\x6c\116\141\x6d\145\x28\44\x63\x68\141\x6e\x6e\145\154\x29\x20\x7d\x7d\12\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x3c\x2f\154\141\142\x65\x6c\x3e\12\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\x3c\x2f\x78\x2d\x61\144\x6d\x69\x6e\x3a\72\146\157\162\x6d\56\x63\157\156\164\162\x6f\x6c\55\x67\x72\x6f\165\x70\x3e\xa\x20\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\40\40\x40\x65\x6e\x64\x66\157\162\x65\x61\143\x68\xa\xa\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\40\x20\x3c\170\55\x61\144\x6d\x69\x6e\72\x3a\146\157\162\x6d\56\x63\157\x6e\164\x72\157\154\55\147\162\157\x75\160\x2e\x65\x72\x72\x6f\x72\40\x63\x6f\156\164\162\x6f\x6c\x2d\x6e\x61\155\145\x3d\x22\x63\x68\141\x6e\156\x65\154\163\x5b\x5d\42\40\57\76\12\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\74\x2f\x64\151\x76\x3e\xa\12\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\74\x21\x2d\55\103\165\x73\164\x6f\155\x65\x72\x20\107\162\157\x75\160\163\x20\55\55\x3e\12\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\74\x64\x69\166\40\x63\x6c\141\x73\163\x3d\x22\x6d\x62\55\x32\56\65\x22\76\12\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x3c\x78\x2d\141\x64\x6d\151\x6e\72\x3a\x66\157\162\x6d\x2e\x63\x6f\156\164\x72\157\x6c\55\x67\x72\157\165\x70\x2e\154\x61\x62\x65\x6c\40\x63\x6c\x61\163\x73\75\x22\x72\145\161\165\x69\162\145\x64\x22\x3e\xa\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\x40\154\141\156\147\x28\47\141\x64\x6d\151\x6e\x3a\x3a\141\160\160\56\x6d\x61\162\x6b\x65\164\151\x6e\147\56\x70\x72\x6f\x6d\157\164\x69\x6f\x6e\x73\x2e\x63\x61\x72\x74\x2d\162\165\154\145\163\x2e\x65\144\151\164\56\x63\x75\x73\164\x6f\x6d\x65\162\x2d\x67\x72\157\165\160\x73\x27\x29\12\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\74\57\170\x2d\x61\144\155\151\x6e\72\72\x66\157\x72\x6d\x2e\143\x6f\156\164\x72\x6f\154\55\x67\162\157\165\160\56\154\141\142\145\x6c\76\xa\xa\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\100\x70\x68\x70\x28\x24\x73\145\x6c\145\143\x74\145\144\117\160\164\151\x6f\x6e\x49\144\163\x20\x3d\x20\x6f\154\x64\x28\47\x63\x75\163\164\157\x6d\x65\x72\137\147\162\x6f\165\160\163\47\51\40\x3f\77\x20\x24\143\x61\162\164\x52\165\154\x65\x2d\x3e\x63\x75\x73\x74\x6f\155\x65\x72\137\x67\162\157\x75\x70\163\x2d\76\160\x6c\x75\x63\153\50\x27\151\144\47\x29\55\x3e\164\157\x41\x72\162\141\x79\50\x29\x29\xa\xa\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x40\146\157\x72\145\x61\143\x68\50\x61\160\160\50\47\x57\x65\x62\x6b\165\154\134\103\165\163\164\x6f\155\x65\162\134\122\x65\160\157\x73\151\x74\157\x72\151\x65\163\x5c\x43\165\x73\164\x6f\x6d\145\x72\107\162\157\x75\160\x52\x65\x70\157\x73\151\x74\x6f\x72\x79\x27\51\55\x3e\x61\154\x6c\50\51\40\141\x73\x20\x24\x63\165\x73\x74\x6f\x6d\x65\x72\107\162\157\x75\160\x29\xa\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\74\170\55\141\144\x6d\151\x6e\72\72\x66\157\x72\x6d\56\x63\x6f\156\x74\162\157\154\x2d\147\x72\157\165\160\x20\143\x6c\141\163\163\x3d\42\x66\154\x65\170\40\x69\164\145\x6d\163\x2d\143\145\156\x74\145\x72\40\x67\141\x70\55\x32\x2e\x35\40\41\x6d\142\55\62\x22\x3e\xa\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\40\74\x78\55\141\x64\155\x69\156\72\x3a\x66\157\162\x6d\56\143\157\x6e\164\162\x6f\154\55\x67\162\x6f\x75\160\x2e\143\x6f\156\164\162\157\154\xa\40\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\164\171\160\145\x3d\42\x63\x68\x65\143\153\x62\157\x78\x22\xa\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\72\x69\144\x3d\x22\47\x63\165\x73\164\157\x6d\x65\162\137\x67\x72\x6f\165\160\x5f\47\40\x2e\40\x27\x5f\47\x20\x2e\40\x24\x63\165\x73\x74\157\155\x65\162\107\162\x6f\165\160\55\76\151\144\x22\12\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\156\x61\155\x65\75\42\x63\165\163\164\157\155\x65\162\x5f\147\x72\157\165\160\163\133\135\x22\12\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\162\165\x6c\145\x73\x3d\42\x72\145\161\x75\151\x72\x65\144\x22\xa\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\x3a\x76\141\x6c\x75\x65\75\x22\x24\x63\165\x73\x74\x6f\x6d\x65\162\107\x72\157\x75\160\55\76\x69\x64\x22\xa\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x3a\146\x6f\162\x3d\42\x27\143\x75\x73\x74\x6f\x6d\145\162\x5f\147\162\157\x75\160\137\47\40\x2e\40\47\x5f\47\x20\56\40\44\143\165\163\164\x6f\155\x65\162\107\162\x6f\165\x70\x2d\76\x69\x64\42\xa\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\72\x6c\141\142\x65\x6c\75\42\164\x72\x61\x6e\163\x28\47\x61\x64\155\151\156\72\72\141\160\x70\x2e\x6d\141\x72\153\x65\x74\151\156\147\x2e\160\162\157\155\157\x74\151\157\156\x73\x2e\x63\141\x72\164\55\162\165\154\145\x73\x2e\145\x64\x69\x74\x2e\143\165\x73\164\157\x6d\x65\162\55\147\162\157\x75\x70\x73\47\x29\42\xa\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\72\x63\x68\145\143\153\145\144\x3d\x22\151\156\137\141\162\162\x61\171\50\x24\143\165\x73\x74\157\155\145\x72\107\x72\x6f\x75\x70\55\x3e\x69\x64\x2c\40\x24\x73\x65\154\x65\x63\x74\145\144\117\160\x74\x69\157\x6e\111\144\163\x29\42\12\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\57\76\xa\12\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x3c\154\141\142\x65\154\xa\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x63\154\141\x73\x73\x3d\x22\164\145\170\164\x2d\x78\x73\40\x74\x65\x78\164\x2d\x67\x72\x61\x79\x2d\x36\x30\60\x20\144\x61\x72\153\72\x74\145\170\164\55\x67\162\141\171\55\x33\x30\x30\40\x66\x6f\x6e\164\55\x6d\145\x64\x69\165\x6d\x20\143\165\162\x73\x6f\x72\x2d\160\157\x69\156\164\145\162\42\xa\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\40\40\40\40\x20\x20\40\40\x20\146\x6f\x72\75\x22\173\x7b\40\x27\x63\165\x73\164\x6f\155\145\162\137\147\x72\x6f\x75\160\137\x27\40\x2e\40\47\137\47\40\x2e\40\x24\x63\165\x73\164\157\155\x65\162\107\162\157\x75\x70\x2d\x3e\151\x64\x20\x7d\x7d\42\xa\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\40\40\40\40\40\76\xa\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\173\x7b\x20\44\x63\165\163\x74\157\155\145\162\x47\x72\x6f\165\160\x2d\76\156\141\155\x65\40\x7d\175\12\x20\40\40\40\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\74\x2f\x6c\x61\142\x65\154\76\xa\xa\x20\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\74\x2f\x78\55\x61\x64\x6d\x69\x6e\x3a\72\x66\x6f\162\155\56\143\x6f\156\164\162\157\154\55\x67\162\157\x75\x70\76\12\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x40\145\156\144\146\x6f\162\x65\141\143\x68\12\xa\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\74\170\x2d\141\144\155\151\156\72\x3a\146\157\x72\155\56\143\x6f\x6e\x74\x72\x6f\x6c\x2d\147\162\x6f\x75\160\x2e\145\x72\162\157\162\x20\143\x6f\156\164\x72\157\154\x2d\156\141\155\x65\75\x22\143\165\x73\x74\157\155\x65\x72\x5f\x67\x72\x6f\165\x70\163\133\135\x22\x20\x2f\76\12\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\74\x2f\144\151\166\x3e\xa\xa\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\x3c\x21\x2d\55\x20\123\164\x61\x74\x75\x73\40\55\x2d\76\xa\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\74\170\x2d\141\x64\x6d\x69\156\72\72\x66\x6f\x72\x6d\56\143\157\156\x74\162\x6f\154\55\147\162\x6f\165\160\40\x63\x6c\x61\163\163\75\x22\41\155\142\55\x30\42\76\12\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\40\x20\40\40\x20\74\x78\55\141\x64\155\151\x6e\x3a\72\x66\157\x72\x6d\56\x63\x6f\156\164\x72\157\x6c\55\x67\162\x6f\165\x70\56\154\141\142\x65\x6c\76\xa\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\100\154\x61\156\x67\x28\47\x61\144\155\151\156\72\72\141\x70\x70\x2e\155\x61\x72\x6b\145\164\151\x6e\147\56\x70\x72\x6f\x6d\x6f\x74\x69\157\156\x73\56\x63\x61\x72\x74\x2d\162\165\154\145\163\56\x65\x64\151\x74\56\163\164\x61\x74\x75\x73\47\x29\xa\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x3c\x2f\x78\x2d\141\144\155\151\156\72\72\146\x6f\x72\x6d\56\143\x6f\156\164\162\157\x6c\x2d\x67\x72\157\165\x70\56\154\x61\142\145\x6c\x3e\xa\xa\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\40\x3c\x78\55\141\x64\155\151\x6e\x3a\x3a\146\157\162\x6d\x2e\x63\157\156\164\162\x6f\x6c\55\147\162\157\x75\160\x2e\143\157\x6e\x74\162\x6f\x6c\xa\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\40\40\40\40\164\x79\160\145\x3d\42\163\167\x69\x74\143\150\42\12\40\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\156\141\155\x65\75\42\x73\x74\141\x74\x75\163\42\xa\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x3a\x76\141\x6c\x75\x65\x3d\42\x24\143\x61\162\x74\122\x75\154\145\x2d\x3e\x73\164\x61\164\165\163\x22\xa\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\x3a\154\x61\x62\x65\x6c\x3d\x22\x74\x72\141\x6e\x73\50\x27\141\x64\155\151\156\x3a\72\141\160\x70\x2e\x6d\141\162\153\x65\x74\x69\156\147\x2e\160\x72\x6f\155\157\164\x69\x6f\x6e\x73\x2e\143\141\162\164\55\162\165\x6c\145\163\x2e\x65\x64\151\164\56\x73\x74\x61\x74\165\163\47\51\42\12\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\40\x3a\x63\150\145\143\x6b\145\x64\x3d\42\x28\142\x6f\157\154\x65\x61\156\x29\x20\44\143\141\x72\164\x52\x75\154\145\55\76\163\164\141\x74\165\x73\42\xa\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x2f\76\xa\xa\40\40\40\40\40\40\40\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x3c\170\x2d\141\144\x6d\x69\x6e\x3a\72\x66\157\162\x6d\56\143\157\156\164\162\x6f\154\x2d\147\x72\157\165\160\x2e\145\x72\x72\x6f\x72\40\x63\x6f\x6e\x74\162\x6f\x6c\x2d\x6e\x61\155\145\75\42\163\x74\141\x74\x75\x73\42\40\57\x3e\xa\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x3c\x2f\170\x2d\141\144\x6d\151\x6e\72\x3a\x66\157\162\x6d\x2e\143\157\156\x74\162\x6f\x6c\55\147\x72\157\165\160\76\xa\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\74\57\x78\x2d\163\154\x6f\x74\76\12\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\74\x2f\170\x2d\141\x64\155\151\x6e\72\x3a\x61\143\x63\x6f\162\x64\x69\157\156\76\12\12\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x7b\41\x21\40\166\x69\145\x77\137\162\145\156\144\145\162\x5f\145\x76\145\156\x74\50\47\x62\141\147\x69\x73\164\157\56\141\x64\x6d\x69\x6e\56\155\x61\x72\x6b\145\x74\x69\156\147\x2e\x70\162\157\155\x6f\x74\x69\157\156\163\x2e\143\x61\x72\164\137\x72\165\154\145\163\x2e\x65\x64\x69\164\56\143\x61\x72\144\x2e\141\x63\x63\157\x72\x64\151\x6f\156\56\163\145\164\164\x69\x6e\147\163\x2e\141\146\x74\x65\162\47\x29\40\x21\41\x7d\12\xa\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\40\x20\40\40\x20\x20\173\x21\41\x20\x76\x69\145\167\x5f\162\145\x6e\144\x65\x72\x5f\145\166\x65\x6e\x74\x28\47\x62\x61\147\151\163\164\x6f\x2e\141\x64\155\151\156\56\x6d\x61\x72\153\x65\164\151\x6e\147\x2e\x70\x72\x6f\x6d\x6f\164\x69\x6f\x6e\163\x2e\x63\x61\x72\x74\x5f\x72\x75\154\145\x73\x2e\x65\x64\x69\x74\x2e\143\x61\162\144\56\x61\143\x63\157\162\144\151\157\156\x2e\x6d\141\162\153\145\x74\151\156\x67\137\x74\151\x6d\145\56\142\x65\x66\x6f\x72\x65\47\51\40\x21\x21\175\12\12\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\74\x21\55\x2d\x20\x4d\141\x72\x6b\x65\164\151\x6e\147\40\124\151\x6d\145\x20\55\x2d\x3e\xa\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\74\170\55\x61\x64\155\151\156\x3a\72\x61\143\143\157\162\x64\151\157\x6e\76\12\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\x20\74\x78\x2d\x73\x6c\157\164\72\150\145\141\144\x65\x72\x3e\12\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\40\x3c\160\x20\x63\154\141\163\163\75\42\160\55\x32\x2e\65\40\164\145\x78\164\55\x67\162\141\x79\x2d\x38\60\x30\x20\x64\x61\162\153\x3a\x74\x65\170\164\55\x77\x68\151\164\x65\40\x74\145\x78\x74\x2d\x62\141\163\x65\40\146\157\x6e\x74\55\x73\x65\x6d\151\142\157\x6c\144\42\x3e\12\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\100\x6c\141\x6e\x67\x28\x27\x61\144\x6d\151\156\72\x3a\141\160\x70\x2e\155\x61\162\153\x65\x74\x69\x6e\147\56\160\x72\157\155\x6f\164\x69\157\156\163\56\143\141\162\x74\55\162\165\154\x65\x73\x2e\x65\x64\151\164\56\x6d\141\x72\153\x65\x74\x69\x6e\147\55\x74\x69\x6d\145\47\x29\12\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x3c\57\x70\x3e\xa\40\x20\40\40\40\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x3c\57\x78\55\x73\154\x6f\164\76\12\xa\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x3c\x78\x2d\163\154\157\x74\x3a\143\x6f\x6e\x74\x65\x6e\164\x3e\12\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\x3c\x78\55\x61\144\x6d\151\156\x3a\x3a\x66\x6f\162\x6d\56\143\x6f\156\x74\162\157\x6c\55\x67\162\x6f\x75\x70\x3e\12\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x3c\x78\x2d\141\x64\x6d\151\x6e\x3a\72\146\x6f\x72\155\56\x63\157\156\164\162\x6f\x6c\55\x67\x72\157\165\x70\56\154\141\x62\x65\x6c\76\xa\x20\x20\40\40\40\40\40\40\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\100\154\141\x6e\x67\50\x27\141\x64\155\x69\156\x3a\72\x61\x70\160\x2e\x6d\x61\x72\x6b\x65\x74\151\156\x67\x2e\160\x72\157\x6d\157\164\151\157\156\163\56\x63\x61\162\164\x2d\162\165\154\x65\163\56\x65\x64\151\164\56\x66\162\x6f\155\47\x29\12\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\74\57\170\55\141\144\155\151\x6e\x3a\x3a\x66\157\x72\x6d\56\143\x6f\156\164\162\x6f\154\55\147\162\157\165\160\x2e\154\x61\x62\x65\x6c\76\xa\12\x20\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\74\170\55\141\144\155\x69\x6e\72\72\x66\157\x72\x6d\56\x63\157\156\x74\162\157\154\55\147\x72\157\165\x70\x2e\x63\x6f\156\164\x72\x6f\154\xa\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x74\171\160\x65\x3d\42\144\141\164\145\164\151\155\x65\42\12\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\151\144\x3d\42\x73\164\x61\x72\164\163\137\146\162\x6f\155\42\xa\40\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\156\x61\x6d\145\75\42\163\x74\141\x72\164\x73\x5f\146\162\x6f\155\x22\xa\x20\40\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\72\x76\x61\154\x75\145\75\x22\157\154\x64\x28\47\163\x74\x61\162\164\x73\137\146\x72\x6f\155\x27\51\x20\77\x3f\40\44\143\x61\162\164\x52\x75\154\145\55\76\x73\x74\141\x72\x74\163\137\146\x72\x6f\x6d\x22\12\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\72\x6c\x61\142\x65\154\x3d\x22\164\x72\141\156\x73\50\x27\x61\144\x6d\151\x6e\x3a\x3a\141\160\160\56\155\x61\162\153\x65\164\x69\x6e\x67\x2e\160\x72\157\x6d\157\164\x69\157\x6e\x73\56\143\141\x72\164\x2d\162\165\154\x65\x73\x2e\x65\x64\151\164\56\146\162\157\x6d\x27\x29\42\xa\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x3a\x70\154\141\x63\x65\150\157\x6c\144\145\x72\75\42\164\x72\141\x6e\163\50\47\x61\144\155\x69\x6e\72\72\141\160\x70\56\155\141\162\x6b\x65\164\x69\x6e\147\56\160\x72\157\x6d\x6f\164\151\x6f\x6e\163\x2e\x63\141\162\x74\x2d\x72\x75\x6c\145\163\56\x65\144\x69\164\x2e\146\x72\157\x6d\47\51\42\xa\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\40\40\x2f\x3e\12\xa\40\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\74\x78\x2d\x61\x64\x6d\151\156\x3a\x3a\x66\x6f\162\x6d\56\x63\157\156\164\162\157\154\55\147\162\x6f\165\160\56\x65\162\x72\x6f\x72\40\x63\157\x6e\x74\162\157\154\55\x6e\141\155\145\75\x22\163\x74\x61\x72\164\x73\137\x66\x72\157\x6d\x22\x20\x2f\76\12\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x3c\x2f\170\x2d\141\144\155\151\x6e\72\72\x66\x6f\162\x6d\56\x63\x6f\156\x74\x72\157\x6c\x2d\147\162\157\x75\160\76\12\xa\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\x20\x20\74\x78\x2d\x61\144\155\151\156\x3a\72\x66\157\x72\155\56\x63\x6f\156\164\162\157\x6c\55\x67\162\157\x75\x70\x20\x63\x6c\x61\163\163\x3d\42\x21\155\x62\55\x30\x22\x3e\12\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\74\x78\x2d\x61\144\x6d\x69\x6e\72\72\146\x6f\162\x6d\56\x63\157\156\x74\162\x6f\x6c\55\147\x72\157\165\160\x2e\154\141\x62\145\x6c\x3e\12\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\40\x40\154\141\156\147\x28\47\x61\x64\155\x69\x6e\72\x3a\141\x70\160\x2e\155\x61\x72\x6b\x65\164\151\156\147\x2e\160\162\x6f\x6d\x6f\164\151\157\x6e\x73\x2e\x63\x61\x72\164\x2d\x72\x75\154\145\163\x2e\145\144\x69\164\x2e\164\157\x27\x29\xa\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\74\x2f\x78\x2d\x61\x64\x6d\151\156\72\x3a\146\157\162\x6d\56\143\157\x6e\x74\162\x6f\x6c\55\147\x72\157\x75\x70\x2e\x6c\x61\x62\x65\x6c\76\12\xa\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x3c\x78\x2d\141\x64\155\x69\x6e\x3a\x3a\146\157\162\155\56\x63\x6f\156\x74\x72\157\x6c\55\x67\162\x6f\165\160\56\143\157\156\x74\162\157\154\12\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\x20\40\x20\40\x20\40\164\x79\160\x65\x3d\42\x64\x61\x74\x65\164\x69\x6d\145\42\12\40\40\x20\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\x69\144\75\42\x65\x6e\x64\163\x5f\x74\x69\x6c\154\42\xa\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\40\156\141\155\x65\x3d\x22\x65\156\144\163\x5f\164\151\x6c\154\x22\12\40\40\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x3a\166\x61\x6c\165\x65\75\42\x6f\154\x64\50\47\x65\x6e\144\163\137\x74\x69\154\x6c\x27\x29\x20\77\x3f\40\44\x63\141\162\164\x52\x75\x6c\145\55\76\145\156\x64\x73\x5f\x74\151\x6c\x6c\42\12\40\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\72\154\x61\x62\145\x6c\75\42\164\x72\x61\x6e\x73\50\47\141\x64\x6d\x69\x6e\72\72\141\x70\160\56\x6d\141\x72\x6b\145\x74\151\x6e\x67\x2e\x70\x72\x6f\155\x6f\x74\151\x6f\156\163\56\143\141\x72\x74\55\x72\165\x6c\145\163\56\x65\144\151\x74\x2e\x74\x6f\x27\51\x22\12\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x3a\x70\154\141\x63\x65\x68\x6f\x6c\144\145\x72\75\x22\x74\162\141\156\163\50\47\141\x64\155\x69\x6e\72\x3a\x61\x70\160\56\155\x61\x72\x6b\145\x74\x69\156\x67\56\x70\162\157\155\x6f\x74\x69\157\156\163\56\143\x61\162\x74\x2d\x72\x75\x6c\x65\163\56\145\144\151\x74\x2e\x74\157\47\51\x22\xa\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x2f\x3e\12\xa\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\74\170\55\x61\144\x6d\151\156\x3a\72\x66\x6f\162\155\x2e\143\x6f\156\x74\x72\x6f\x6c\x2d\x67\162\157\x75\160\x2e\145\162\x72\x6f\x72\40\143\157\x6e\164\162\157\x6c\55\x6e\x61\155\145\75\x22\145\156\144\x73\x5f\x74\151\154\154\42\x20\x2f\x3e\xa\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x3c\57\170\x2d\141\x64\x6d\151\x6e\72\72\x66\157\x72\x6d\56\x63\157\x6e\164\x72\157\154\55\147\x72\x6f\165\160\x3e\12\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x3c\57\x78\55\163\x6c\157\164\76\12\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\74\x2f\x78\55\141\x64\x6d\151\156\x3a\x3a\x61\x63\143\x6f\x72\x64\x69\x6f\156\x3e\xa\xa\x20\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\173\x21\41\40\166\151\145\x77\x5f\162\145\x6e\x64\x65\x72\x5f\145\166\x65\156\x74\50\47\x62\x61\147\x69\163\x74\x6f\x2e\x61\144\x6d\x69\156\56\155\141\162\x6b\145\164\x69\x6e\147\56\160\162\x6f\x6d\x6f\164\151\x6f\156\x73\x2e\143\141\x72\164\x5f\x72\165\x6c\x65\x73\56\145\144\x69\x74\x2e\x63\x61\x72\144\56\x61\143\143\x6f\162\144\x69\x6f\x6e\x2e\155\141\162\x6b\x65\164\151\156\x67\137\164\x69\x6d\145\56\141\x66\164\x65\162\47\51\40\41\41\175\12\xa\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\74\x2f\144\x69\166\x3e\xa\40\40\40\x20\40\40\40\40\40\40\40\40\x20\40\x20\40\x20\x20\40\40\74\57\x64\151\x76\x3e\12\12\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\x7b\41\41\40\166\x69\145\167\137\x72\x65\x6e\144\x65\x72\x5f\145\166\x65\x6e\x74\50\47\142\141\x67\x69\163\164\157\56\x61\x64\155\151\156\x2e\x6d\141\162\153\145\164\x69\156\147\56\160\162\x6f\155\157\164\x69\157\x6e\x73\x2e\x63\x61\x72\164\137\x72\165\x6c\x65\163\56\145\144\x69\x74\56\145\144\x69\164\x5f\x66\157\x72\x6d\137\x63\157\156\164\x72\157\154\x73\56\141\146\x74\145\x72\47\51\40\x21\x21\x7d\xa\xa\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\74\x2f\x78\x2d\x61\x64\x6d\x69\156\72\x3a\x66\157\x72\x6d\x3e\xa\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\74\57\144\x69\166\76\xa\x20\x20\x20\40\40\x20\40\40\x3c\57\x73\x63\162\151\160\x74\76\12\xa\x20\40\x20\x20\x20\x20\x20\x20\x3c\x21\x2d\55\40\166\40\x63\x61\162\x74\40\162\165\x6c\145\x20\x65\x64\x69\164\x20\146\x6f\162\x6d\x20\x63\157\155\x70\x6f\156\145\x6e\164\x20\55\x2d\x3e\12\x20\40\40\40\x20\40\x20\x20\74\x73\143\162\x69\160\164\x20\x74\x79\160\145\x3d\42\155\x6f\x64\165\154\x65\42\76\xa\40\40\40\x20\40\40\x20\x20\40\40\x20\40\141\x70\160\x2e\x63\157\x6d\160\x6f\156\145\x6e\x74\x28\47\166\55\143\x61\x72\x74\55\x72\165\154\x65\x2d\145\x64\x69\164\x2d\146\157\x72\155\x27\54\40\173\xa\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x74\x65\x6d\160\x6c\141\164\x65\72\40\x27\x23\x76\x2d\x63\x61\x72\x74\55\162\x75\x6c\145\x2d\145\144\x69\x74\x2d\x66\157\x72\155\55\164\145\155\x70\x6c\141\x74\x65\x27\x2c\xa\xa\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x64\x61\164\141\50\x29\40\173\12\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x72\x65\x74\x75\x72\156\x20\173\12\40\40\40\x20\40\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\143\157\165\160\x6f\156\x54\171\x70\145\x3a\40\x7b\x7b\x20\x6f\154\x64\50\x27\143\x6f\165\160\x6f\156\137\164\x79\x70\x65\x27\51\40\77\x3f\40\44\x63\141\162\164\122\165\x6c\145\55\76\x63\157\x75\160\157\156\x5f\164\171\x70\145\x20\x7d\175\x2c\xa\12\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\40\40\40\x20\40\40\165\x73\145\101\x75\164\x6f\107\145\156\145\162\141\164\151\x6f\156\72\40\173\x7b\x20\x6f\x6c\x64\50\47\165\163\x65\x5f\141\x75\x74\x6f\137\x67\145\156\x65\162\x61\164\151\157\156\47\51\x20\x3f\77\40\x24\x63\x61\162\164\122\165\154\x65\x2d\x3e\165\163\x65\x5f\141\x75\x74\157\137\x67\145\x6e\145\x72\141\x74\x69\x6f\156\x20\x7d\x7d\x2c\xa\12\40\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\143\157\156\144\x69\x74\151\x6f\156\x54\171\x70\145\x3a\40\173\x7b\x20\x6f\154\x64\x28\x27\x63\x6f\156\x64\x69\x74\x69\x6f\156\x5f\164\x79\x70\145\x27\x29\40\77\x3f\40\x24\143\x61\162\x74\122\x75\154\145\x2d\x3e\143\157\156\144\151\164\x69\x6f\x6e\137\x74\171\x70\x65\40\175\x7d\54\xa\xa\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\x63\x6f\156\x64\151\164\x69\x6f\x6e\x73\72\40\x40\152\x73\157\x6e\50\44\x63\x61\162\x74\x52\165\x6c\145\x2d\76\x63\x6f\x6e\x64\x69\x74\151\x6f\x6e\163\x20\x3f\x3f\x20\x5b\135\x29\x2c\12\xa\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x61\x63\x74\x69\157\156\124\171\x70\x65\x3a\40\42\x7b\173\x20\157\x6c\x64\x28\x27\x61\143\x74\151\157\156\137\164\171\160\x65\x27\x29\x20\77\77\40\x24\143\x61\162\x74\x52\165\154\145\x2d\76\x61\143\164\151\x6f\x6e\137\x74\x79\160\x65\40\x7d\x7d\42\54\12\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x7d\12\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x7d\54\xa\12\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\155\x65\x74\150\157\144\x73\72\x20\173\xa\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x61\144\x64\x43\x6f\156\144\151\x74\x69\x6f\x6e\x28\51\x20\x7b\xa\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\x74\150\x69\163\56\143\x6f\156\144\x69\164\151\x6f\156\163\56\160\165\x73\x68\50\173\12\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x27\141\164\164\162\x69\142\x75\x74\x65\47\x3a\x20\47\x27\54\xa\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\47\157\x70\x65\162\x61\164\157\x72\47\72\x20\47\x3d\75\x27\54\12\40\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\40\x27\166\x61\154\165\x65\x27\x3a\x20\47\x27\x2c\xa\40\40\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\x20\175\51\x3b\xa\x20\40\x20\40\40\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\40\40\175\x2c\xa\12\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\162\x65\x6d\x6f\166\x65\x43\x6f\156\144\151\164\x69\157\156\x28\x63\x6f\156\144\151\x74\x69\x6f\156\51\40\173\12\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\154\145\164\x20\x69\156\x64\145\170\x20\x3d\40\x74\x68\151\163\x2e\143\x6f\156\x64\x69\x74\x69\x6f\156\163\x2e\x69\156\x64\145\x78\x4f\x66\x28\143\x6f\156\144\x69\x74\x69\157\x6e\51\73\12\12\x20\x20\x20\40\x20\40\40\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\164\150\x69\x73\x2e\x63\157\156\x64\x69\164\x69\x6f\x6e\163\x2e\163\160\x6c\151\143\145\x28\151\x6e\x64\x65\170\54\40\61\51\x3b\12\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\x7d\54\xa\12\40\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\x6f\x6e\x53\x75\142\155\x69\x74\x28\145\x29\40\x7b\xa\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\40\40\40\x74\150\x69\x73\x2e\x24\162\x6f\157\164\x2e\157\156\123\165\x62\155\x69\x74\50\145\x29\73\12\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\40\40\40\x20\x20\x7d\x2c\12\xa\40\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x72\145\144\151\162\145\143\164\x42\141\x63\x6b\x28\146\x61\x6c\154\142\x61\x63\x6b\125\x72\154\51\x20\173\xa\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\164\150\151\x73\56\x24\x72\x6f\x6f\164\x2e\162\x65\x64\151\x72\x65\x63\x74\102\x61\143\153\x28\x66\141\x6c\x6c\x62\x61\143\x6b\125\162\154\51\73\12\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\175\12\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\175\54\12\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x7d\51\x3b\12\40\x20\40\x20\x20\40\40\40\74\x2f\x73\143\x72\151\x70\x74\76\12\12\40\40\x20\x20\x20\40\x20\40\74\41\55\55\x20\x76\40\143\x61\x74\141\154\x6f\x67\x20\162\165\x6c\x65\x20\143\x6f\x6e\144\x69\164\151\157\x6e\x20\x69\x74\145\x6d\40\x66\x6f\x72\x6d\x20\164\145\x6d\x70\x6c\x61\164\145\x20\55\55\x3e\12\x20\x20\40\x20\40\40\x20\40\x3c\163\143\x72\x69\x70\164\xa\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x74\x79\x70\145\x3d\42\x74\x65\x78\164\x2f\x78\x2d\x74\x65\155\x70\154\141\164\x65\x22\xa\40\40\x20\40\x20\x20\40\x20\40\x20\40\40\151\x64\x3d\42\166\55\x63\141\162\164\x2d\162\165\154\145\55\x63\x6f\x6e\144\x69\164\151\x6f\156\55\151\x74\x65\x6d\55\x74\145\x6d\160\154\141\x74\x65\42\xa\40\x20\x20\x20\40\x20\x20\x20\x3e\12\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x3c\x64\x69\166\x20\143\x6c\x61\163\163\75\42\146\x6c\145\x78\40\147\x61\x70\55\x34\40\152\x75\163\164\x69\146\171\x2d\142\x65\164\x77\x65\x65\156\x20\155\164\55\x34\x22\76\12\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\74\x64\151\x76\x20\x63\154\141\163\x73\x3d\x22\146\154\145\x78\x20\x67\x61\x70\55\x34\40\x66\154\x65\170\55\61\x20\155\x61\x78\55\163\155\72\146\x6c\x65\x78\x2d\167\162\141\160\40\x6d\x61\x78\55\x73\155\72\x66\x6c\x65\x78\55\x31\42\76\12\x20\40\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\x20\x3c\x73\x65\154\x65\x63\x74\xa\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\72\156\x61\x6d\x65\75\42\x5b\x27\143\157\x6e\x64\151\x74\151\157\x6e\x73\133\47\x20\53\40\151\x6e\144\x65\x78\40\53\x20\47\135\x5b\x61\x74\164\x72\151\142\165\x74\145\x5d\x27\x5d\42\xa\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x63\154\x61\163\163\75\42\x63\165\x73\x74\157\155\x2d\x73\x65\154\x65\x63\x74\40\x66\x6c\x65\170\40\167\55\61\57\63\x20\x6d\x69\156\x3a\x77\55\x31\57\x33\x20\x68\55\61\60\x20\x70\x79\55\x32\x2e\x35\40\160\x78\x2d\63\x20\x62\147\x2d\167\x68\151\x74\145\40\x64\141\162\153\72\142\x67\x2d\147\x72\141\x79\55\71\60\x30\x20\142\157\x72\144\145\162\x20\144\x61\x72\x6b\72\x62\157\x72\x64\145\x72\55\x67\162\141\171\x2d\x38\x30\x30\x20\162\x6f\x75\156\x64\145\144\x2d\x6d\144\40\x74\x65\170\164\x2d\x73\x6d\40\164\x65\x78\x74\x2d\x67\162\141\171\55\66\60\x30\x20\x64\141\162\x6b\72\164\145\170\164\55\147\x72\x61\x79\x2d\x33\60\x30\40\146\x6f\156\x74\x2d\156\157\162\155\x61\154\40\164\162\x61\156\163\x69\x74\x69\x6f\x6e\55\x61\154\154\40\150\157\166\145\162\72\x62\x6f\x72\144\145\x72\55\147\x72\x61\171\55\x34\x30\60\x20\x64\x61\162\x6b\72\150\x6f\166\x65\162\x3a\142\x6f\162\144\145\162\55\147\162\x61\171\55\64\60\60\40\155\x61\x78\x2d\x73\x6d\x3a\x66\x6c\145\170\x2d\x61\x75\x74\x6f\x20\155\x61\170\x2d\x73\155\x3a\155\x61\170\55\167\x2d\x66\165\154\154\x22\xa\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\x3a\x69\x64\75\42\x5b\47\x63\157\156\x64\x69\x74\x69\x6f\x6e\163\x5b\47\x20\53\x20\x69\156\x64\x65\x78\40\x2b\40\x27\135\133\141\x74\164\162\151\x62\165\x74\145\x5d\47\135\42\12\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\40\40\40\40\166\55\x6d\x6f\144\x65\154\x3d\x22\x63\157\156\144\x69\164\151\x6f\x6e\56\x61\x74\x74\x72\x69\x62\165\164\x65\x22\12\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\76\12\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\74\157\160\x74\151\157\x6e\40\166\141\154\165\145\75\x22\x22\76\100\154\141\x6e\147\50\x27\x61\x64\155\x69\x6e\x3a\x3a\141\160\x70\56\155\x61\x72\x6b\x65\x74\151\x6e\147\x2e\x70\162\157\x6d\x6f\164\x69\157\x6e\x73\x2e\143\141\x72\164\x2d\162\x75\154\145\x73\56\145\x64\151\164\x2e\143\x68\157\157\x73\145\x2d\143\x6f\156\x64\151\x74\x69\x6f\156\55\x74\157\x2d\141\144\x64\x27\51\x3c\x2f\157\160\x74\x69\x6f\x6e\76\12\12\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\74\x6f\160\164\147\162\x6f\165\160\xa\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x76\x2d\146\157\x72\x3d\x27\50\x63\157\x6e\144\x69\x74\x69\x6f\156\x41\164\x74\x72\151\142\x75\x74\x65\54\40\151\156\x64\x65\x78\51\40\x69\x6e\40\x63\157\156\x64\x69\164\x69\x6f\156\x41\164\164\x72\x69\142\165\164\x65\163\47\12\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\40\x3a\x6c\141\x62\x65\x6c\x3d\42\x63\157\x6e\144\x69\x74\151\157\x6e\101\164\x74\x72\151\142\165\164\145\x2e\x6c\x61\x62\x65\154\42\12\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x3e\12\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x3c\157\160\164\x69\x6f\156\xa\40\x20\40\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x76\55\146\x6f\x72\75\47\50\x63\x68\151\154\x64\101\164\164\162\x69\x62\165\164\x65\54\40\x69\x6e\144\145\170\51\x20\x69\156\x20\x63\157\156\x64\x69\x74\x69\157\x6e\101\x74\x74\x72\x69\x62\x75\x74\x65\56\x63\x68\x69\x6c\x64\162\145\x6e\x27\12\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x3a\x76\141\x6c\x75\x65\75\x22\143\x68\x69\x6c\x64\101\164\x74\162\x69\x62\165\x74\145\x2e\x6b\x65\171\42\xa\x20\40\x20\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x3a\x74\145\170\x74\x3d\42\143\150\x69\x6c\x64\101\x74\x74\162\x69\x62\x75\164\x65\x2e\x6c\x61\142\145\154\x22\xa\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\x3e\12\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\74\57\x6f\x70\164\151\157\x6e\x3e\xa\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\74\x2f\157\x70\164\x67\x72\157\x75\160\x3e\12\40\x20\40\40\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\74\57\163\x65\x6c\x65\143\x74\76\xa\xa\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\x20\74\x73\x65\154\145\143\x74\xa\40\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\40\x20\x3a\x6e\x61\x6d\145\x3d\42\133\x27\x63\157\x6e\x64\151\164\151\x6f\x6e\x73\x5b\47\x20\53\40\x69\x6e\144\145\x78\x20\53\40\47\x5d\x5b\x6f\160\145\x72\x61\x74\x6f\162\135\x27\135\x22\xa\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\143\154\x61\x73\163\x3d\42\143\165\x73\164\x6f\x6d\55\163\145\x6c\x65\x63\x74\40\151\156\x6c\151\x6e\145\55\x66\154\x65\x78\x20\147\141\x70\55\x78\x2d\x31\40\x6a\x75\163\164\151\x66\171\55\142\145\x74\x77\145\145\x6e\40\151\164\x65\x6d\163\55\x63\x65\156\164\145\x72\x20\x68\x2d\x31\x30\x20\167\55\x66\x75\x6c\x6c\x20\x6d\141\x78\55\x77\x2d\x5b\61\x39\x36\x70\170\135\x20\x70\171\x2d\62\x2e\65\40\x70\x78\55\63\x20\x62\147\x2d\167\150\151\x74\x65\40\144\x61\162\153\72\142\147\x2d\147\x72\x61\x79\x2d\71\x30\x30\x20\142\157\162\144\145\162\40\x64\x61\162\x6b\72\x62\157\x72\x64\145\x72\55\147\x72\x61\x79\55\70\60\x30\40\162\157\165\x6e\144\x65\x64\55\155\x64\40\164\145\x78\x74\55\x73\155\40\164\145\x78\x74\55\x67\x72\x61\171\x2d\x36\x30\60\40\144\141\162\x6b\72\x74\x65\x78\164\x2d\147\162\x61\x79\55\x33\x30\60\40\x66\x6f\156\x74\55\x6e\157\x72\x6d\x61\x6c\x20\x74\x72\141\x6e\163\x69\164\151\x6f\156\x2d\x61\154\x6c\40\150\157\x76\145\x72\x3a\x62\157\162\144\145\x72\x2d\x67\162\141\x79\55\64\x30\60\40\144\x61\162\153\x3a\x68\x6f\x76\x65\x72\72\142\157\x72\x64\x65\162\55\x67\162\x61\171\55\64\60\60\40\155\x61\170\x2d\x73\x6d\x3a\x66\x6c\145\170\55\x61\165\164\x6f\x20\155\x61\170\55\163\x6d\x3a\x6d\x61\170\x2d\x77\55\x66\165\x6c\154\42\12\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\166\x2d\x6d\x6f\144\x65\154\75\x22\x63\157\156\x64\151\164\x69\x6f\156\x2e\x6f\x70\145\x72\x61\x74\157\162\42\12\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\166\55\x69\146\x3d\42\155\141\164\143\150\145\144\101\164\x74\x72\151\142\x75\164\x65\x22\xa\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\40\76\12\x20\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\40\x3c\x6f\x70\x74\151\x6f\156\xa\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\x20\x76\x2d\146\x6f\162\x3d\47\x6f\x70\145\x72\x61\x74\157\x72\x20\151\156\40\x63\157\156\x64\x69\x74\x69\x6f\156\x4f\160\145\x72\x61\x74\157\162\x73\133\x6d\x61\164\143\150\145\144\x41\x74\164\162\151\x62\x75\164\x65\x2e\164\171\x70\145\x5d\47\xa\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\72\166\141\154\x75\x65\75\x22\157\160\145\x72\141\x74\157\162\56\x6f\160\145\x72\x61\164\x6f\x72\x22\12\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\40\x3a\x74\145\170\164\x3d\x22\157\x70\145\x72\141\x74\157\162\56\x6c\141\x62\145\154\42\12\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\x3e\xa\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\x3c\57\157\160\164\151\x6f\x6e\76\xa\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\74\x2f\x73\x65\x6c\x65\x63\164\76\12\xa\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\x20\x3c\x64\151\166\40\166\x2d\x69\146\75\x22\x6d\x61\x74\143\150\145\144\x41\x74\164\162\x69\142\165\x74\145\42\x3e\12\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x3c\151\156\160\x75\164\xa\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\164\171\160\x65\75\x22\150\x69\144\x64\145\x6e\x22\12\40\40\x20\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\72\156\x61\x6d\x65\x3d\x22\x5b\47\x63\x6f\x6e\144\151\164\x69\157\x6e\x73\x5b\47\40\53\x20\x69\156\144\145\170\40\x2b\40\47\x5d\x5b\141\x74\x74\x72\x69\142\165\x74\x65\137\x74\x79\x70\x65\135\x27\x5d\42\xa\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\x76\55\x6d\157\144\x65\154\75\42\x6d\x61\164\x63\150\145\x64\x41\x74\x74\x72\151\x62\165\164\145\56\x74\171\x70\x65\x22\xa\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\76\xa\12\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x3c\144\151\x76\12\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\166\x2d\x69\x66\75\x22\x6d\141\x74\x63\150\145\144\x41\x74\x74\x72\151\142\165\164\145\56\153\x65\x79\x20\x3d\75\40\47\x70\x72\x6f\144\x75\x63\164\x7c\x63\141\x74\145\147\x6f\x72\171\137\x69\144\163\47\12\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\40\40\40\40\174\174\x20\x6d\x61\164\x63\150\x65\x64\x41\164\164\162\x69\142\165\x74\145\56\x6b\145\171\x20\75\75\x20\47\160\x72\157\144\165\x63\164\174\143\141\164\x65\147\x6f\x72\x79\137\x69\x64\x73\47\12\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\174\x7c\40\155\x61\164\143\150\145\144\101\x74\164\162\151\142\165\x74\145\x2e\x6b\x65\171\40\75\75\x20\x27\160\x72\x6f\x64\165\143\164\x7c\x70\x61\162\145\156\164\x3a\72\x63\x61\164\x65\147\157\x72\x79\137\x69\144\x73\x27\42\12\40\40\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\76\xa\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\74\x78\55\x61\x64\x6d\x69\x6e\72\72\164\x72\x65\145\x2e\166\151\145\x77\12\x20\40\40\40\40\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\151\x6e\160\x75\x74\55\164\171\160\145\x3d\x22\x63\x68\145\x63\153\142\157\170\x22\xa\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x73\145\154\x65\143\164\x69\x6f\x6e\55\x74\x79\x70\145\x3d\x22\x69\x6e\x64\x69\x76\151\x64\165\x61\154\x22\xa\x20\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\72\72\x6e\x61\155\145\55\x66\x69\x65\154\x64\x3d\x22\47\x63\157\x6e\x64\151\164\151\157\156\163\x5b\x27\40\53\40\151\x6e\x64\145\170\40\x2b\40\47\135\x5b\x76\141\154\x75\145\x5d\47\42\xa\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\166\141\x6c\x75\145\55\146\151\145\x6c\144\75\42\151\144\x22\12\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\151\144\55\146\x69\x65\x6c\x64\75\x22\151\144\42\12\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x3a\x3a\151\164\x65\x6d\x73\75\x27\x6d\x61\164\x63\150\145\144\x41\164\164\x72\x69\142\x75\164\145\56\157\x70\x74\151\x6f\156\x73\47\12\x20\40\40\40\x20\40\x20\40\40\40\40\40\40\40\x20\40\40\40\40\40\40\40\40\x20\40\40\40\40\x20\40\40\x20\x3a\x3a\166\141\x6c\x75\145\75\47\x63\x6f\x6e\x64\x69\x74\x69\157\x6e\x2e\x76\x61\x6c\165\x65\47\xa\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\40\146\141\x6c\x6c\x62\x61\x63\x6b\x2d\154\x6f\143\141\154\145\x3d\x22\x7b\x7b\40\x63\157\x6e\146\x69\147\x28\x27\x61\160\x70\x2e\x66\141\x6c\x6c\142\x61\x63\153\137\154\157\x63\141\154\145\47\51\40\175\175\42\12\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\x2f\x3e\xa\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\40\40\40\40\40\74\57\x64\x69\166\76\xa\12\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x3c\144\151\x76\40\x76\55\145\154\163\x65\76\12\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x3c\x64\x69\166\xa\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x76\x2d\151\x66\75\x22\155\141\164\x63\x68\x65\x64\x41\x74\x74\x72\x69\142\165\x74\x65\x2e\x74\x79\x70\x65\x20\x3d\x3d\x20\x27\164\145\170\x74\47\12\40\40\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\174\174\40\x6d\x61\164\143\x68\145\x64\101\x74\x74\162\x69\142\165\164\145\56\x74\x79\x70\x65\x20\x3d\x3d\x20\x27\160\162\151\x63\145\x27\12\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\174\x7c\x20\155\x61\x74\143\150\145\144\101\164\x74\162\151\142\x75\164\x65\x2e\x74\171\160\x65\x20\x3d\75\40\x27\144\x65\143\151\x6d\x61\154\x27\12\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\x20\40\40\174\174\40\155\141\164\143\150\x65\144\101\x74\164\x72\151\142\165\164\145\56\164\x79\160\x65\x20\x3d\75\x20\47\x69\156\164\x65\147\x65\162\x27\x22\12\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\76\12\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\40\40\x3c\x69\156\x70\x75\x74\12\40\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\164\x79\160\145\x3d\x22\x74\145\170\164\x22\xa\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x63\x6c\x61\x73\x73\75\x22\167\x2d\x66\x75\x6c\154\40\160\x79\x2d\62\x2e\65\x20\160\x78\x2d\x33\40\142\x6f\162\144\x65\162\x20\162\x6f\x75\156\144\145\x64\55\155\144\40\x74\145\x78\x74\55\163\x6d\x20\x74\145\170\x74\55\147\x72\141\x79\55\x36\x30\60\40\144\141\162\x6b\72\164\x65\x78\x74\55\147\162\141\171\55\63\60\60\x20\x74\162\141\156\163\x69\164\x69\x6f\x6e\55\141\154\154\40\150\157\166\145\162\x3a\x62\157\x72\144\145\162\x2d\147\x72\141\x79\55\x34\x30\60\40\144\141\x72\153\72\x68\157\166\145\162\72\x62\x6f\x72\144\145\x72\55\x67\162\x61\171\55\x34\60\60\40\x66\x6f\x63\165\x73\x3a\142\x6f\x72\x64\x65\x72\55\147\162\141\171\x2d\x34\x30\x30\40\144\x61\162\x6b\x3a\x66\157\x63\165\163\72\142\157\x72\144\x65\x72\55\147\x72\141\x79\55\64\60\60\40\144\141\x72\153\x3a\x62\x67\x2d\x67\162\x61\x79\x2d\x39\60\60\x20\x64\141\162\153\x3a\x62\x6f\x72\x64\x65\x72\x2d\147\162\141\x79\55\70\60\60\42\xa\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\72\151\144\x3d\42\133\47\x63\x6f\x6e\144\x69\x74\151\x6f\156\x73\x5b\47\x20\53\x20\x69\156\x64\145\x78\x20\53\x20\x27\135\x5b\166\x61\154\165\x65\135\x27\135\42\12\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\72\x6e\141\155\x65\75\42\x5b\47\x63\x6f\156\x64\x69\x74\151\157\x6e\163\x5b\x27\x20\x2b\40\151\156\x64\x65\170\x20\53\40\x27\x5d\x5b\166\x61\154\165\x65\x5d\x27\x5d\42\12\40\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x76\x2d\155\x6f\144\x65\154\75\42\143\157\x6e\144\x69\x74\151\x6f\x6e\x2e\166\x61\154\x75\145\x22\xa\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x2f\x3e\xa\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\74\57\144\151\x76\76\xa\xa\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x3c\x64\x69\166\x20\x76\x2d\x69\x66\75\42\155\x61\164\x63\150\145\x64\101\164\164\162\x69\x62\x75\x74\x65\56\x74\x79\x70\145\40\75\x3d\x20\x27\x64\x61\164\145\x27\42\x3e\xa\40\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x3c\x78\x2d\141\x64\155\151\x6e\72\72\x66\154\141\x74\x2d\x70\x69\143\153\x65\162\x2e\144\x61\164\145\x20\143\154\x61\x73\x73\x3d\x22\x21\x77\55\133\x31\x34\x30\160\x78\135\x22\40\72\x3a\141\x6c\154\157\x77\x2d\151\x6e\x70\x75\x74\75\42\x66\x61\x6c\163\x65\42\76\12\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\40\x20\40\x20\40\40\74\x69\156\x70\x75\164\12\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x74\171\x70\x65\75\42\x64\x61\164\x65\42\12\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\143\154\x61\x73\163\x3d\x22\x66\x6c\145\x78\40\155\151\x6e\55\x68\x2d\133\x33\71\x70\170\135\40\x77\x2d\146\165\x6c\x6c\40\x72\x6f\165\x6e\144\x65\144\x2d\155\x64\40\142\157\162\144\145\x72\40\160\x78\55\63\x20\160\171\55\62\x20\164\145\x78\164\x2d\x73\x6d\40\x74\145\x78\164\x2d\x67\162\141\x79\55\x36\60\60\40\x74\x72\141\x6e\x73\x69\x74\151\157\x6e\55\141\x6c\154\x20\150\157\x76\145\162\72\x62\157\x72\144\145\x72\x2d\147\162\x61\x79\55\x34\x30\x30\40\x64\x61\x72\153\72\x68\157\x76\x65\x72\72\142\157\x72\x64\x65\162\55\147\x72\141\171\55\64\60\x30\40\x64\141\x72\153\x3a\142\157\x72\144\145\x72\x2d\147\162\x61\x79\55\70\x30\60\40\144\141\162\153\72\142\x67\55\x67\162\141\x79\x2d\71\x30\x30\40\x64\141\162\153\x3a\x74\145\x78\x74\55\147\162\141\171\x2d\x33\x30\x30\x22\xa\40\40\x20\40\40\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\72\x6e\141\155\145\75\42\x5b\47\143\x6f\x6e\x64\151\164\151\x6f\x6e\x73\133\x27\40\x2b\x20\x69\x6e\x64\x65\170\40\x2b\x20\47\x5d\133\x76\x61\x6c\165\145\135\47\135\x22\12\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\x20\166\x2d\x6d\157\x64\145\x6c\75\42\x63\x6f\x6e\x64\151\x74\151\x6f\x6e\x2e\x76\x61\154\x75\x65\42\12\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x2f\76\xa\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\74\x2f\170\x2d\x61\x64\x6d\x69\156\x3a\x3a\146\154\x61\164\x2d\x70\151\143\x6b\x65\x72\56\x64\x61\x74\145\x3e\xa\x20\40\40\40\x20\40\40\40\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\x3c\57\x64\x69\166\76\xa\xa\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\40\74\144\151\x76\x20\166\55\x69\x66\75\42\x6d\x61\x74\x63\150\x65\x64\x41\x74\164\162\151\142\165\x74\145\56\x74\x79\x70\x65\x20\75\x3d\40\x27\144\x61\164\145\164\151\x6d\145\47\x22\x3e\xa\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x3c\x78\55\141\144\x6d\x69\x6e\72\x3a\x66\x6c\141\164\55\160\x69\143\153\145\162\56\x64\x61\x74\145\x20\143\154\x61\163\x73\x3d\x22\x21\x77\55\x5b\61\x34\60\160\x78\x5d\42\x20\x3a\72\x61\154\x6c\x6f\167\x2d\151\x6e\160\x75\x74\x3d\42\x66\x61\x6c\163\145\42\x3e\xa\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x3c\151\x6e\160\165\164\xa\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x74\171\x70\145\75\x22\144\141\x74\x65\x74\x69\155\x65\42\xa\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\40\40\40\x20\143\x6c\141\163\x73\75\x22\x66\154\x65\x78\40\155\151\156\x2d\150\55\133\x33\71\x70\170\x5d\x20\167\x2d\x66\165\154\154\x20\x72\157\165\x6e\144\145\x64\x2d\155\x64\40\142\157\162\144\x65\x72\40\x70\x78\55\x33\x20\160\171\x2d\62\40\x74\x65\x78\164\x2d\163\155\x20\164\x65\x78\x74\55\x67\162\x61\x79\55\66\60\60\x20\x74\x72\x61\x6e\x73\151\164\151\x6f\x6e\x2d\141\154\154\40\150\157\x76\145\x72\72\142\157\x72\144\145\x72\x2d\147\x72\x61\171\x2d\64\x30\60\40\x64\141\162\x6b\x3a\x68\x6f\166\145\162\72\142\157\162\x64\145\162\x2d\147\x72\141\x79\55\x34\x30\x30\40\x64\141\162\153\x3a\142\157\x72\144\x65\x72\x2d\147\162\x61\171\x2d\70\x30\x30\x20\x64\x61\x72\x6b\x3a\142\x67\55\x67\x72\141\171\55\71\60\60\x20\x64\x61\162\x6b\72\x74\145\x78\x74\55\x67\x72\x61\x79\x2d\63\x30\60\42\xa\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\72\x6e\141\155\145\x3d\42\x5b\x27\143\157\156\x64\151\164\x69\157\x6e\163\x5b\47\40\x2b\x20\151\x6e\144\145\x78\x20\x2b\40\47\135\x5b\166\x61\x6c\x75\x65\135\x27\x5d\42\12\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\40\40\x20\40\x20\40\40\166\55\x6d\157\x64\145\x6c\75\42\143\x6f\156\x64\151\164\x69\x6f\x6e\x2e\x76\x61\154\165\x65\42\xa\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\57\76\12\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\74\57\170\x2d\x61\x64\x6d\151\x6e\72\x3a\146\x6c\x61\x74\x2d\x70\x69\143\153\145\x72\x2e\144\x61\164\x65\x3e\12\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\74\57\144\x69\166\x3e\12\12\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\74\144\x69\x76\x20\166\x2d\x69\146\x3d\42\155\x61\x74\143\150\145\144\101\x74\x74\162\151\x62\165\164\145\x2e\x74\171\160\x65\x20\x3d\x3d\40\47\x62\157\x6f\154\x65\x61\x6e\x27\x22\76\xa\40\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\74\x73\x65\x6c\x65\143\x74\12\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\72\x6e\141\x6d\x65\75\42\133\47\143\x6f\x6e\x64\x69\164\x69\157\x6e\163\x5b\47\40\53\40\151\156\144\x65\170\40\x2b\x20\47\x5d\133\x76\x61\154\x75\x65\x5d\47\x5d\x22\12\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\40\x20\40\143\x6c\141\163\163\75\x22\143\165\163\x74\x6f\155\x2d\x73\x65\x6c\x65\143\x74\x20\x69\x6e\x6c\151\156\145\x2d\x66\154\145\x78\40\147\141\160\55\170\x2d\x31\40\152\165\163\x74\151\146\x79\55\x62\145\164\167\x65\x65\156\40\x69\164\x65\x6d\163\55\143\145\156\x74\145\162\40\x68\x2d\x31\x30\40\x77\55\146\165\x6c\x6c\40\x6d\x69\156\x2d\167\x2d\x5b\x31\x39\66\160\x78\x5d\40\x70\x79\x2d\62\56\x35\40\x70\170\55\63\40\142\x67\55\167\150\x69\x74\145\x20\x64\x61\x72\x6b\x3a\142\x67\55\147\162\x61\171\x2d\x39\60\x30\40\142\x6f\x72\144\145\162\40\144\x61\x72\153\72\142\157\x72\144\145\162\55\x67\162\x61\x79\55\x38\60\60\40\x72\157\x75\156\144\145\144\x2d\155\144\x20\164\145\x78\x74\x2d\x73\155\x20\164\x65\x78\x74\x2d\x67\x72\x61\171\55\66\60\60\x20\144\x61\162\x6b\x3a\164\145\170\x74\55\147\x72\141\171\x2d\x33\x30\60\x20\x66\x6f\x6e\x74\55\156\157\x72\155\x61\154\x20\x74\x72\141\x6e\x73\x69\164\151\x6f\x6e\55\x61\154\154\40\x68\x6f\166\145\x72\x3a\x62\x6f\162\144\x65\162\55\x67\162\141\x79\x2d\64\60\60\x20\144\141\x72\153\x3a\x68\x6f\166\145\162\x3a\142\x6f\x72\x64\x65\162\55\x67\x72\141\x79\x2d\64\x30\60\40\x6d\141\x78\x2d\163\155\72\x66\154\145\x78\x2d\141\x75\x74\x6f\x20\155\141\x78\55\163\155\72\155\x61\170\x2d\x77\x2d\x66\x75\154\154\42\12\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\40\x76\x2d\155\157\x64\x65\154\75\42\x63\x6f\x6e\144\151\164\x69\157\x6e\x2e\x76\x61\x6c\165\145\x22\12\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\40\40\76\xa\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\74\157\160\x74\151\x6f\156\x20\x76\x61\x6c\165\x65\75\42\x31\x22\x3e\12\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\100\154\141\156\147\50\x27\x61\144\155\151\x6e\72\x3a\x61\x70\160\x2e\155\x61\162\153\x65\164\151\156\147\56\x70\x72\157\155\157\164\151\157\156\x73\56\143\x61\x72\164\x2d\162\165\154\145\163\x2e\145\x64\151\164\56\x79\x65\x73\x27\x29\xa\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\74\57\x6f\160\164\x69\x6f\x6e\x3e\xa\xa\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\74\x6f\160\164\151\157\156\x20\166\x61\x6c\x75\x65\x3d\x22\x30\x22\76\12\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x40\154\141\156\147\50\47\x61\144\155\151\x6e\72\x3a\x61\x70\x70\56\155\x61\162\x6b\145\x74\151\x6e\147\x2e\160\162\157\155\x6f\164\x69\157\156\163\56\x63\141\162\164\55\x72\165\154\x65\x73\56\x65\144\x69\164\x2e\x6e\x6f\47\x29\12\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\x20\x3c\x2f\x6f\160\x74\x69\157\x6e\76\12\40\x20\x20\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\x3c\x2f\163\x65\x6c\x65\x63\164\76\xa\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x3c\x2f\144\x69\x76\x3e\12\xa\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\40\74\x64\x69\x76\x20\166\x2d\151\146\x3d\42\155\141\x74\143\150\x65\x64\x41\x74\164\x72\151\142\x75\x74\145\x2e\164\171\x70\145\40\x3d\x3d\40\47\x73\145\x6c\145\x63\x74\47\40\x7c\x7c\x20\155\x61\164\x63\150\x65\144\101\164\164\162\x69\142\x75\x74\x65\x2e\164\171\160\145\40\75\x3d\x20\x27\x72\x61\144\151\157\47\x22\x3e\xa\40\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\74\163\145\x6c\x65\143\164\xa\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\72\x6e\x61\155\145\x3d\42\133\47\x63\157\x6e\x64\x69\164\151\x6f\x6e\x73\x5b\47\x20\53\40\151\156\x64\x65\x78\x20\x2b\x20\47\x5d\133\166\141\154\165\x65\135\x27\x5d\x22\12\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\143\154\x61\163\163\x3d\x22\x63\x75\x73\x74\157\155\x2d\x73\145\154\145\x63\x74\40\151\x6e\154\151\x6e\x65\55\146\x6c\145\x78\40\x67\141\160\x2d\x78\55\x31\x20\152\x75\163\164\151\146\171\x2d\142\x65\164\x77\x65\x65\x6e\40\x69\x74\145\155\163\55\x63\x65\156\164\145\x72\x20\150\x2d\x31\x30\40\x77\x2d\x66\165\x6c\154\x20\155\151\x6e\55\x77\x2d\x5b\61\71\x36\x70\170\x5d\x20\160\x79\55\x32\x2e\65\x20\160\x78\x2d\x33\x20\x62\147\x2d\167\150\151\164\x65\x20\144\141\x72\153\72\x62\x67\55\147\x72\141\171\x2d\x39\60\60\x20\142\157\x72\144\x65\x72\x20\144\x61\x72\153\x3a\142\x6f\162\144\145\162\55\x67\162\x61\171\55\70\x30\60\40\x72\157\x75\x6e\144\145\144\x2d\x6d\x64\x20\x74\x65\x78\x74\x2d\x73\155\x20\x74\145\170\164\x2d\x67\x72\x61\x79\55\x36\x30\60\40\144\141\162\153\72\x74\x65\170\164\x2d\x67\x72\141\171\55\63\60\60\40\x66\157\x6e\x74\x2d\x6e\x6f\162\x6d\x61\154\40\x74\162\141\156\163\151\164\x69\157\x6e\55\x61\x6c\154\x20\x68\157\x76\145\162\x3a\x62\x6f\x72\x64\x65\162\x2d\147\162\141\171\55\64\x30\60\40\144\141\162\x6b\72\x68\157\x76\x65\162\x3a\142\157\162\x64\145\x72\x2d\147\162\141\x79\x2d\x34\x30\x30\42\xa\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\166\55\x69\x66\75\x22\x6d\141\x74\143\150\x65\144\101\164\164\x72\151\x62\x75\164\x65\56\x6b\x65\171\x20\x21\75\40\x27\143\141\164\x61\154\157\x67\x7c\163\x74\x61\164\x65\x27\x22\xa\40\x20\40\x20\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\40\x20\x76\55\155\157\144\145\154\75\42\x63\157\156\x64\151\164\151\x6f\156\56\x76\141\154\x75\x65\42\12\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\76\xa\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\74\157\x70\164\x69\157\x6e\xa\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x76\x2d\146\x6f\x72\75\47\x6f\160\x74\x69\157\x6e\40\151\x6e\40\x6d\x61\x74\x63\x68\x65\144\x41\164\164\162\151\142\x75\x74\x65\56\157\x70\x74\151\157\156\163\x27\12\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\72\x76\141\154\165\145\75\x22\x6f\x70\164\x69\157\156\56\x69\x64\x22\xa\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\40\x20\40\40\40\x20\40\72\164\x65\170\164\75\42\157\160\x74\x69\157\156\x2e\141\x64\155\151\x6e\x5f\x6e\x61\155\145\x22\xa\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x3e\xa\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\40\40\40\74\x2f\157\160\x74\x69\157\x6e\76\12\40\40\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\x3c\57\x73\x65\154\145\143\x74\x3e\xa\xa\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\x3c\163\145\154\x65\x63\x74\12\40\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\72\x6e\x61\x6d\x65\75\x22\x5b\47\x63\157\x6e\144\151\164\x69\x6f\156\163\133\47\40\x2b\x20\151\x6e\144\145\170\x20\x2b\x20\47\135\133\x76\x61\154\x75\x65\x5d\47\135\42\12\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\x63\154\141\x73\163\75\x22\x63\165\163\164\157\x6d\x2d\163\x65\x6c\145\143\x74\x20\x69\156\154\x69\x6e\x65\55\x66\x6c\145\170\x20\147\141\x70\x2d\x78\x2d\x31\40\152\165\x73\164\151\146\x79\55\x62\145\164\167\145\x65\x6e\x20\x69\164\145\155\x73\x2d\x63\x65\x6e\x74\145\162\x20\155\141\170\55\150\55\x31\x30\40\167\x2d\146\x75\x6c\x6c\40\x6d\x61\x78\55\167\55\x5b\x31\71\66\160\x78\x5d\x20\x70\x79\55\62\56\x35\x20\160\170\x2d\x33\x20\142\x67\55\167\150\x69\x74\145\x20\144\141\162\153\x3a\142\x67\55\147\162\141\x79\x2d\x39\x30\x30\x20\x62\x6f\162\x64\145\162\40\x64\141\x72\x6b\72\142\157\x72\x64\x65\162\x2d\x67\162\x61\x79\55\70\x30\x30\x20\x72\x6f\x75\x6e\144\x65\x64\55\155\x64\x20\x74\145\x78\x74\x2d\x73\155\40\x74\x65\x78\164\x2d\147\162\x61\x79\x2d\66\x30\60\x20\x64\x61\162\153\x3a\x74\145\170\164\55\147\x72\141\171\55\63\60\60\x20\x66\157\x6e\164\55\x6e\157\162\155\x61\154\40\x74\162\x61\x6e\x73\151\164\x69\x6f\x6e\55\x61\154\x6c\x20\x68\157\166\145\162\x3a\x62\157\x72\x64\x65\162\x2d\x67\162\141\x79\55\x34\x30\60\x20\144\x61\x72\153\72\150\x6f\166\x65\162\x3a\142\157\x72\x64\145\x72\x2d\x67\162\141\x79\55\64\x30\x30\40\x6d\x61\170\x2d\x73\155\72\x66\154\x65\170\x2d\x61\165\164\x6f\x20\x6d\141\x78\x2d\163\155\72\x6d\141\x78\55\167\55\x66\x75\154\x6c\x22\xa\40\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\166\x2d\155\157\144\x65\x6c\x3d\42\143\157\156\144\151\x74\151\157\156\56\x76\x61\x6c\165\145\42\12\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\x20\40\40\x76\x2d\145\154\x73\x65\xa\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\x3e\xa\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\x3c\x6f\x70\164\147\x72\157\x75\x70\xa\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\166\x2d\146\x6f\162\75\47\157\160\x74\x69\157\156\x20\x69\156\x20\x6d\x61\164\143\x68\x65\x64\101\164\164\x72\151\142\x75\164\x65\56\157\x70\164\151\157\156\163\x27\12\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\72\154\141\x62\x65\154\x3d\x22\x6f\x70\164\151\x6f\x6e\x2e\x61\144\x6d\x69\156\137\x6e\141\155\x65\42\12\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x3e\xa\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\74\x6f\x70\x74\151\157\156\xa\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\166\55\x66\x6f\x72\x3d\47\163\x74\x61\x74\x65\x20\x69\156\40\x6f\160\x74\x69\157\x6e\x2e\x73\164\141\164\145\x73\x27\12\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x3a\x76\x61\154\165\145\x3d\42\163\164\141\x74\145\56\143\x6f\x64\145\42\12\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\72\x74\145\170\164\75\42\x73\x74\141\164\145\x2e\141\x64\x6d\x69\156\137\x6e\141\x6d\145\42\12\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\40\x20\40\x3e\12\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x3c\57\x6f\160\x74\x69\157\x6e\76\12\40\40\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\x20\40\40\x20\74\x2f\157\160\x74\147\x72\x6f\x75\x70\x3e\xa\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x3c\x2f\163\145\x6c\145\143\x74\76\xa\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\74\57\144\151\x76\76\xa\xa\40\x20\40\x20\x20\40\40\x20\40\40\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\74\x64\x69\x76\40\x76\x2d\151\146\75\x22\x6d\141\164\x63\x68\145\x64\101\164\164\x72\151\x62\x75\x74\145\56\x74\x79\x70\x65\x20\x3d\x3d\x20\x27\x6d\165\x6c\164\151\x73\145\x6c\145\143\x74\47\x20\x7c\x7c\40\155\x61\164\143\x68\x65\x64\x41\164\x74\162\151\x62\x75\x74\x65\56\164\171\160\x65\40\75\x3d\x20\x27\143\x68\x65\143\153\142\x6f\170\47\x22\x3e\xa\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\74\x73\x65\x6c\x65\143\164\xa\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\72\x6e\141\155\145\75\x22\x5b\x27\x63\157\156\144\x69\164\x69\157\x6e\x73\133\x27\40\x2b\40\x69\x6e\144\x65\170\40\x2b\40\47\135\133\x76\141\154\165\145\135\x5b\x5d\x27\135\x22\12\x20\40\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\40\x20\40\40\40\x63\x6c\141\163\163\x3d\42\x69\156\154\151\x6e\145\x2d\x66\154\x65\x78\x20\147\x61\160\55\170\x2d\x31\x20\152\x75\x73\164\x69\x66\x79\55\142\x65\x74\167\x65\x65\156\40\151\164\x65\x6d\163\55\143\x65\156\164\x65\x72\40\x68\55\61\60\x20\x77\55\133\61\x39\x36\x70\170\x5d\x20\155\x61\x78\55\x77\x2d\x5b\x31\71\x36\160\x78\135\x20\160\x79\x2d\x32\x20\x70\x78\x2d\63\x20\142\157\162\144\x65\x72\x20\162\157\165\x6e\x64\145\144\55\155\x64\40\164\x65\x78\164\x2d\x73\155\40\164\x65\x78\x74\x2d\147\162\141\171\x2d\66\60\60\x20\144\141\x72\x6b\72\x74\145\170\x74\x2d\x67\162\141\171\x2d\x33\x30\x30\40\x74\x72\x61\156\x73\151\164\x69\157\156\x2d\x61\x6c\154\x20\150\157\x76\x65\x72\72\x62\157\162\x64\145\162\x2d\147\x72\x61\x79\55\x34\x30\60\x20\x64\x61\162\153\72\150\x6f\166\145\162\72\x62\157\162\144\145\x72\x2d\147\x72\x61\171\55\x34\x30\60\40\146\157\x63\x75\x73\72\142\x6f\162\x64\145\x72\x2d\147\162\141\x79\x2d\x34\x30\60\40\x64\x61\162\153\x3a\146\157\143\x75\163\x3a\x62\157\x72\x64\145\x72\x2d\x67\x72\141\x79\55\x34\x30\x30\x20\x64\x61\162\153\x3a\x62\147\55\x67\162\x61\x79\55\71\60\60\x20\x64\141\162\x6b\72\142\x6f\162\144\x65\x72\x2d\x67\x72\x61\171\x2d\70\x30\x30\x22\12\x20\40\x20\40\40\40\40\40\x20\40\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x76\55\x6d\157\x64\x65\154\x3d\42\x63\157\156\x64\151\164\x69\x6f\x6e\56\166\141\154\x75\x65\42\xa\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\x6d\x75\x6c\x74\x69\x70\x6c\145\12\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\76\xa\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\74\157\160\164\x69\x6f\156\12\40\x20\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\166\55\x66\x6f\162\x3d\x27\157\x70\x74\x69\157\156\x20\151\x6e\40\x6d\x61\x74\143\150\x65\x64\101\164\x74\162\151\x62\x75\164\x65\56\157\x70\x74\x69\x6f\156\163\47\xa\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\40\72\x76\141\154\x75\145\75\x22\157\x70\164\x69\x6f\x6e\56\151\x64\42\12\40\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x3a\x74\x65\x78\164\x3d\42\x6f\160\164\x69\157\156\x2e\x61\x64\155\x69\156\x5f\x6e\141\155\x65\x22\12\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\40\40\x20\40\x20\40\76\12\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\74\57\x6f\x70\x74\x69\x6f\x6e\x3e\xa\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\x20\74\57\163\145\154\x65\143\164\76\12\40\40\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x3c\57\144\151\166\76\xa\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\74\x2f\x64\151\166\76\xa\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\40\40\40\74\x2f\x64\x69\166\x3e\12\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\74\57\144\151\166\x3e\12\xa\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\74\x73\x70\x61\156\12\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x63\x6c\141\163\163\x3d\42\151\x63\x6f\156\55\144\x65\154\x65\164\145\x20\x6d\141\170\55\150\x2d\x39\x20\155\x61\x78\55\167\55\71\40\164\x65\x78\164\x2d\x32\x78\154\40\160\55\61\x2e\65\x20\162\x6f\165\156\x64\x65\x64\55\155\x64\x20\143\x75\162\163\157\x72\55\x70\157\151\x6e\164\x65\x72\x20\164\162\141\x6e\x73\x69\x74\151\x6f\156\x2d\x61\x6c\154\x20\150\157\x76\x65\x72\x3a\142\147\55\147\x72\x61\171\x2d\61\x30\x30\40\x64\x61\x72\153\x3a\150\x6f\166\145\x72\x3a\x62\x67\x2d\147\x72\x61\171\55\71\65\x30\40\x6d\x61\x78\x2d\163\x6d\x3a\x70\x6c\x61\143\145\55\163\145\154\x66\55\x63\145\156\164\145\x72\42\12\40\40\40\40\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\40\40\100\143\x6c\x69\x63\153\x3d\42\162\x65\x6d\157\x76\145\103\x6f\x6e\144\151\164\x69\157\x6e\x22\xa\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\40\40\40\x20\76\xa\40\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\40\x3c\57\163\160\x61\156\76\xa\40\x20\40\40\x20\40\40\40\40\40\x20\40\74\57\x64\151\x76\76\12\x20\40\40\x20\40\x20\40\40\74\57\163\143\x72\x69\160\164\x3e\12\xa\40\40\x20\40\40\40\40\40\x3c\41\55\x2d\40\166\x20\x63\x61\x74\141\x6c\x6f\x67\x20\x72\x75\154\145\40\x63\x6f\x6e\x64\x69\164\151\x6f\x6e\x20\151\164\145\x6d\x20\143\157\155\160\157\156\145\156\x74\x20\55\x2d\x3e\12\40\40\x20\40\x20\40\x20\40\x3c\x73\x63\x72\x69\x70\x74\x20\x74\x79\x70\145\x3d\x22\x6d\x6f\x64\x75\154\x65\42\x3e\12\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x61\160\160\56\143\157\155\160\157\156\145\x6e\x74\x28\47\166\x2d\x63\141\162\x74\55\x72\165\x6c\x65\x2d\x63\157\x6e\144\x69\164\x69\x6f\156\55\151\164\x65\155\47\x2c\x20\173\12\x20\40\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x74\x65\155\160\x6c\141\x74\145\x3a\x20\42\x23\166\55\143\141\162\164\x2d\162\165\x6c\145\x2d\x63\x6f\156\x64\x69\164\151\x6f\x6e\55\x69\164\145\155\x2d\x74\145\x6d\160\x6c\141\164\145\x22\54\xa\12\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\160\162\x6f\x70\x73\x3a\40\133\x27\151\x6e\x64\x65\170\47\x2c\40\x27\x63\x6f\x6e\x64\151\x74\x69\157\156\47\x5d\x2c\12\xa\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\144\x61\x74\x61\50\51\x20\173\xa\40\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\162\145\164\165\x72\156\40\x7b\xa\40\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\143\157\156\x64\151\164\151\x6f\156\101\164\x74\162\x69\142\165\164\145\163\72\x20\x40\152\x73\x6f\156\x28\x61\x70\x70\x28\47\134\x57\145\142\153\x75\154\x5c\x43\x61\162\164\122\165\x6c\x65\134\x52\x65\x70\x6f\x73\151\164\157\162\151\145\x73\x5c\x43\141\162\x74\x52\165\154\x65\x52\145\x70\x6f\163\x69\164\x6f\x72\x79\x27\x29\x2d\76\x67\145\164\103\x6f\156\144\x69\x74\x69\157\x6e\101\x74\164\x72\151\142\x75\x74\x65\163\50\51\51\x2c\xa\12\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\141\164\164\162\x69\142\x75\x74\145\x54\171\160\145\111\x6e\x64\145\x78\x65\163\x3a\x20\173\12\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\x20\x20\x20\40\40\40\47\x63\141\162\164\47\72\40\x30\54\xa\12\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\47\x63\141\162\164\x5f\151\x74\x65\155\47\x3a\40\x31\x2c\xa\12\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x27\160\x72\x6f\144\x75\143\x74\47\x3a\40\x32\12\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x7d\54\12\12\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x63\x6f\156\x64\151\x74\x69\157\x6e\117\x70\145\x72\141\164\157\162\x73\x3a\40\x7b\xa\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\x27\160\x72\151\143\145\47\72\40\133\x7b\12\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\47\157\x70\x65\x72\x61\164\157\162\x27\72\40\47\75\x3d\x27\54\xa\x20\40\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\47\154\141\x62\145\x6c\47\x3a\40\42\100\x6c\141\x6e\x67\50\47\141\x64\x6d\151\156\72\72\141\160\160\x2e\155\x61\x72\x6b\x65\x74\x69\x6e\147\x2e\160\x72\x6f\155\157\164\x69\x6f\156\163\56\143\141\x72\164\55\162\x75\154\145\163\x2e\x65\144\151\x74\x2e\x69\163\55\x65\161\x75\141\154\x2d\x74\x6f\x27\51\42\12\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\x7d\54\40\x7b\12\40\40\40\40\40\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x27\x6f\x70\x65\162\141\164\157\x72\47\72\40\47\41\x3d\x27\x2c\xa\x20\40\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\x20\40\x27\x6c\141\142\x65\154\47\72\40\x22\x40\x6c\x61\156\x67\50\47\x61\x64\155\x69\156\72\x3a\141\160\x70\x2e\x6d\141\x72\x6b\x65\x74\x69\x6e\x67\56\160\162\x6f\x6d\x6f\x74\x69\157\x6e\x73\x2e\143\141\x72\x74\x2d\x72\x75\x6c\145\163\x2e\145\144\151\x74\x2e\x69\163\x2d\x6e\157\164\55\145\x71\x75\x61\x6c\55\x74\157\x27\x29\x22\xa\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x7d\54\x20\x7b\12\40\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x27\157\160\x65\x72\x61\x74\157\162\47\72\40\47\76\x3d\x27\54\xa\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\x27\x6c\141\142\145\x6c\47\72\x20\x22\x40\x6c\x61\x6e\x67\x28\47\x61\x64\x6d\151\x6e\72\x3a\x61\x70\160\x2e\x6d\x61\x72\x6b\x65\164\151\x6e\147\56\160\x72\157\x6d\x6f\164\151\x6f\156\x73\56\x63\141\x72\x74\55\162\x75\x6c\x65\x73\x2e\145\x64\151\164\56\x65\161\165\x61\x6c\x73\55\x6f\x72\55\147\162\145\x61\x74\x65\x72\55\164\x68\x61\x6e\47\x29\x22\12\x20\x20\40\40\40\40\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x7d\54\x20\x7b\xa\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\x27\x6f\160\x65\x72\x61\164\157\x72\x27\x3a\40\x27\x3c\x3d\47\54\xa\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\x20\x27\154\x61\x62\145\x6c\x27\x3a\x20\42\100\x6c\x61\x6e\147\x28\x27\141\x64\x6d\x69\156\72\72\141\x70\160\x2e\x6d\x61\162\x6b\x65\164\151\156\147\56\160\x72\x6f\155\x6f\x74\151\157\156\x73\x2e\143\141\162\164\x2d\162\x75\x6c\145\x73\x2e\x65\144\x69\x74\x2e\145\161\165\141\154\163\55\x6f\162\55\x6c\x65\163\x73\x2d\164\x68\141\x6e\47\x29\x22\12\x20\40\x20\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\x20\175\54\x20\173\xa\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\40\40\40\40\40\40\x27\x6f\x70\145\x72\141\164\x6f\x72\47\x3a\40\47\x3e\x27\54\xa\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x27\x6c\x61\x62\145\x6c\47\72\40\x22\100\x6c\141\156\x67\x28\x27\141\144\x6d\x69\x6e\72\x3a\x61\160\160\x2e\155\141\162\153\x65\x74\151\x6e\147\x2e\160\162\157\155\x6f\164\x69\157\156\x73\x2e\x63\x61\162\164\x2d\x72\165\154\145\163\56\145\144\151\164\x2e\147\162\145\141\x74\145\x72\x2d\x74\x68\141\x6e\47\51\x22\xa\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\40\x7d\54\x20\x7b\xa\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\47\x6f\x70\x65\162\141\164\157\x72\47\72\x20\47\74\47\54\12\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x27\x6c\x61\x62\145\154\47\72\x20\42\x40\x6c\x61\156\147\50\x27\141\x64\155\151\156\x3a\72\141\160\x70\x2e\x6d\141\x72\153\145\x74\151\156\x67\x2e\160\162\157\x6d\157\x74\x69\x6f\x6e\163\56\x63\x61\162\x74\x2d\162\x75\154\x65\163\56\145\x64\x69\164\56\x6c\145\x73\163\55\x74\150\141\x6e\47\x29\42\12\40\40\40\40\40\40\40\40\40\40\40\40\40\x20\40\x20\40\40\x20\40\40\40\40\40\40\40\40\x20\x7d\x5d\x2c\12\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x27\x64\x65\x63\x69\155\x61\154\x27\72\x20\x5b\173\12\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\x27\157\x70\145\x72\141\164\157\162\x27\72\40\47\75\x3d\x27\x2c\xa\x20\x20\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\40\x27\x6c\141\x62\x65\x6c\47\72\40\42\100\154\141\156\147\x28\x27\141\144\155\x69\156\72\72\141\160\x70\56\x6d\141\x72\x6b\145\x74\151\156\147\56\x70\162\x6f\155\157\x74\x69\157\156\163\x2e\x63\141\162\164\x2d\x72\x75\154\x65\163\56\x65\x64\151\x74\x2e\x69\x73\x2d\145\161\165\141\x6c\x2d\164\157\47\x29\42\12\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\175\x2c\x20\x7b\12\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\47\157\x70\x65\x72\141\x74\157\x72\x27\72\x20\47\x21\75\47\54\xa\x20\40\40\40\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\x27\154\141\142\x65\154\x27\x3a\x20\x22\x40\154\x61\x6e\147\x28\47\141\144\x6d\x69\156\x3a\x3a\141\160\x70\x2e\x6d\141\162\x6b\145\164\x69\156\x67\56\x70\162\x6f\x6d\x6f\164\151\x6f\x6e\163\x2e\143\x61\x72\x74\x2d\162\x75\x6c\x65\163\56\145\144\151\x74\x2e\151\163\55\156\x6f\164\55\x65\x71\165\141\154\x2d\x74\157\47\x29\x22\12\x20\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\x7d\54\x20\173\xa\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\47\157\160\x65\162\141\x74\157\x72\47\x3a\40\x27\76\75\x27\x2c\xa\40\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x27\154\x61\x62\145\x6c\x27\x3a\40\x22\100\x6c\x61\x6e\x67\x28\x27\141\x64\155\151\x6e\72\x3a\x61\x70\x70\x2e\155\141\x72\x6b\145\164\x69\x6e\x67\56\x70\x72\157\155\157\x74\151\157\156\x73\x2e\x63\141\x72\x74\55\162\165\x6c\x65\163\56\x65\144\151\x74\56\x65\161\x75\141\154\163\x2d\x6f\x72\55\147\x72\145\x61\x74\145\162\55\x74\150\x61\x6e\47\x29\42\xa\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\175\x2c\40\173\12\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\47\157\160\x65\x72\141\164\157\162\47\x3a\40\x27\74\x3d\47\x2c\12\x20\40\40\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\x20\x20\x27\x6c\x61\x62\145\154\x27\x3a\x20\42\100\154\x61\x6e\147\x28\47\141\144\155\151\156\x3a\x3a\141\x70\160\56\155\141\x72\153\x65\164\x69\156\147\56\160\162\157\155\x6f\x74\151\157\x6e\163\x2e\143\141\x72\x74\x2d\162\165\154\145\x73\56\145\144\x69\164\x2e\x65\x71\x75\x61\x6c\x73\55\157\x72\x2d\154\145\x73\x73\55\x74\150\141\x6e\47\51\42\12\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\40\40\40\175\54\40\x7b\xa\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\40\40\x20\40\x20\47\157\160\145\x72\141\x74\157\x72\x27\x3a\40\x27\x3e\47\x2c\12\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x27\x6c\141\142\145\154\x27\x3a\x20\x22\100\154\x61\156\x67\50\x27\141\x64\155\151\x6e\72\72\141\160\160\56\x6d\x61\x72\x6b\145\x74\151\x6e\147\56\x70\x72\157\x6d\x6f\x74\x69\157\156\163\56\143\x61\162\164\55\162\x75\x6c\x65\x73\56\145\144\151\164\x2e\147\162\145\x61\164\x65\162\55\x74\150\141\156\47\x29\x22\12\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x7d\x2c\40\x7b\12\x20\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x20\40\40\47\157\160\x65\x72\141\x74\x6f\162\x27\x3a\x20\47\x3c\x27\x2c\xa\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\40\x27\x6c\x61\x62\x65\x6c\x27\72\40\x22\100\154\141\156\147\50\x27\x61\x64\155\151\156\72\x3a\x61\160\160\x2e\155\141\x72\153\145\x74\151\x6e\x67\x2e\x70\x72\x6f\x6d\x6f\164\x69\157\x6e\x73\x2e\x63\x61\162\164\55\x72\165\154\x65\163\56\x65\144\x69\x74\x2e\x6c\145\163\x73\x2d\164\x68\141\x6e\x27\x29\x22\xa\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\x20\175\135\54\12\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\x27\151\156\164\x65\147\145\162\x27\x3a\x20\x5b\x7b\12\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x27\x6f\x70\145\x72\x61\164\x6f\x72\47\x3a\40\x27\75\x3d\x27\x2c\12\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\47\x6c\141\142\145\x6c\x27\x3a\x20\42\100\154\141\156\147\50\x27\x61\144\155\x69\156\72\x3a\141\160\160\56\x6d\141\x72\153\x65\164\151\156\x67\x2e\x70\162\157\155\x6f\x74\x69\x6f\156\163\56\143\x61\x72\164\55\162\x75\154\145\x73\56\x65\x64\x69\164\x2e\x69\163\x2d\x65\161\x75\x61\154\x2d\x74\157\x27\51\42\12\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x7d\54\x20\173\xa\40\40\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\x27\x6f\160\145\x72\x61\164\157\x72\x27\72\x20\47\41\75\x27\54\12\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\40\40\47\x6c\x61\142\145\x6c\x27\x3a\40\42\x40\x6c\141\156\x67\50\x27\141\144\155\x69\156\72\x3a\x61\160\160\x2e\x6d\141\162\x6b\145\x74\x69\x6e\147\56\x70\x72\157\x6d\157\x74\151\x6f\x6e\x73\56\143\x61\162\x74\x2d\x72\x75\x6c\x65\x73\56\x65\144\151\164\56\151\163\x2d\156\x6f\x74\55\x65\x71\x75\x61\154\55\x74\157\x27\x29\x22\xa\x20\x20\40\40\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x7d\54\x20\x7b\12\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\40\40\40\x20\40\40\x27\x6f\x70\x65\162\141\164\x6f\x72\x27\x3a\x20\47\x3e\x3d\47\x2c\xa\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\47\x6c\x61\142\x65\x6c\47\72\40\x22\x40\x6c\141\156\x67\50\x27\x61\144\x6d\151\156\72\x3a\x61\160\160\x2e\x6d\141\162\153\x65\x74\x69\x6e\x67\x2e\x70\162\157\x6d\x6f\164\x69\x6f\x6e\163\56\143\141\162\164\55\162\x75\154\145\x73\56\145\144\x69\164\x2e\x65\161\x75\141\154\163\x2d\x6f\162\55\x67\x72\x65\141\164\x65\x72\55\164\x68\141\x6e\47\x29\x22\12\x20\x20\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\175\x2c\40\x7b\xa\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\40\47\x6f\160\x65\162\141\x74\x6f\162\x27\x3a\x20\47\74\x3d\x27\54\xa\x20\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\47\154\x61\142\145\154\47\72\x20\x22\x40\154\x61\x6e\x67\x28\47\141\x64\x6d\x69\x6e\x3a\x3a\141\x70\160\x2e\155\x61\x72\x6b\145\164\151\156\x67\x2e\x70\162\x6f\155\157\x74\151\x6f\156\x73\x2e\x63\141\x72\x74\55\x72\165\154\145\x73\x2e\145\x64\151\x74\x2e\x65\x71\165\141\x6c\x73\x2d\x6f\x72\55\x6c\x65\163\163\55\164\x68\x61\156\x27\51\42\12\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\40\40\x20\40\x7d\54\40\173\xa\40\x20\40\40\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\40\x20\40\40\x20\40\x20\x27\x6f\160\x65\x72\x61\164\157\162\x27\72\40\47\x3e\x27\54\12\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x27\154\x61\142\x65\154\x27\x3a\40\x22\100\154\x61\x6e\147\x28\x27\141\x64\155\151\156\72\x3a\x61\x70\160\56\155\x61\x72\153\x65\x74\151\x6e\x67\x2e\x70\x72\x6f\x6d\157\x74\151\x6f\x6e\163\56\143\141\162\x74\x2d\x72\x75\154\145\163\x2e\145\144\x69\x74\56\147\x72\x65\x61\x74\145\x72\55\164\x68\x61\x6e\x27\x29\42\xa\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x7d\x2c\40\x7b\12\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\40\40\40\x20\40\47\x6f\x70\145\162\x61\164\x6f\162\x27\x3a\x20\x27\74\47\x2c\xa\x20\40\40\40\40\40\40\40\x20\40\40\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x27\154\141\x62\145\x6c\x27\x3a\x20\x22\x40\154\141\156\x67\x28\47\141\144\x6d\x69\156\x3a\72\141\160\x70\56\x6d\x61\162\153\145\164\x69\x6e\147\56\x70\162\157\155\x6f\164\151\x6f\x6e\163\56\143\x61\162\x74\55\162\165\154\x65\163\x2e\x65\x64\151\x74\56\154\x65\x73\x73\x2d\164\x68\x61\x6e\x27\51\42\xa\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\175\x5d\54\12\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\40\x20\40\40\40\40\47\x74\x65\170\164\x27\x3a\x20\133\x7b\12\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x27\x6f\x70\x65\162\x61\164\x6f\162\47\72\x20\47\75\x3d\47\54\xa\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\47\x6c\141\142\145\154\47\72\40\42\x40\154\141\156\x67\50\x27\141\144\x6d\151\156\x3a\72\x61\x70\x70\56\155\141\162\153\145\x74\151\156\x67\x2e\160\162\157\x6d\x6f\164\x69\x6f\x6e\163\56\143\141\x72\x74\x2d\x72\165\x6c\x65\163\x2e\145\144\x69\164\x2e\151\x73\55\145\161\x75\141\154\55\x74\157\x27\x29\x22\xa\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x7d\54\40\x7b\xa\40\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\40\40\40\40\x20\x20\40\40\40\x20\x20\40\47\157\x70\x65\x72\141\x74\x6f\162\x27\x3a\40\47\41\x3d\47\54\xa\x20\x20\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\47\154\141\142\145\154\x27\72\40\x22\100\x6c\141\156\147\50\47\141\144\x6d\x69\156\x3a\72\x61\x70\160\x2e\155\x61\x72\153\x65\x74\x69\x6e\x67\56\x70\x72\157\x6d\157\x74\151\x6f\156\163\56\143\x61\x72\x74\x2d\x72\x75\x6c\145\163\56\145\144\x69\x74\x2e\x69\x73\55\156\157\164\x2d\145\161\165\x61\x6c\55\x74\157\x27\x29\x22\xa\x20\x20\40\x20\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\40\x20\40\175\x2c\40\173\xa\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\x27\157\160\x65\x72\141\164\157\x72\x27\x3a\x20\47\173\175\47\x2c\12\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\x27\x6c\x61\x62\x65\x6c\x27\x3a\x20\42\x40\154\x61\156\x67\50\x27\141\x64\x6d\x69\x6e\x3a\72\141\160\x70\56\x6d\x61\x72\x6b\145\x74\x69\x6e\147\x2e\x70\162\x6f\155\157\x74\x69\157\x6e\x73\x2e\143\x61\x72\x74\55\162\165\x6c\x65\163\x2e\145\x64\x69\164\x2e\x63\x6f\156\164\141\151\156\47\51\42\xa\40\x20\x20\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\175\x2c\40\173\xa\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\47\x6f\x70\145\162\x61\x74\x6f\162\47\x3a\40\47\x21\x7b\x7d\47\x2c\12\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x27\154\141\x62\x65\154\47\72\40\42\x40\x6c\141\156\147\x28\x27\141\x64\155\151\x6e\x3a\x3a\141\160\x70\x2e\x6d\x61\x72\x6b\x65\164\x69\156\147\x2e\x70\162\x6f\155\157\164\151\157\156\x73\x2e\x63\141\162\x74\55\162\x75\x6c\145\163\56\145\x64\151\164\x2e\144\x6f\145\163\x2d\x6e\157\x74\x2d\x63\157\156\164\141\151\x6e\x27\x29\42\xa\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x7d\x5d\54\12\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\47\142\x6f\157\x6c\145\141\156\x27\72\x20\133\x7b\xa\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\47\157\x70\145\x72\x61\x74\x6f\162\47\72\40\47\x3d\x3d\47\54\12\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x27\154\141\142\x65\154\x27\72\40\42\100\x6c\x61\x6e\x67\50\x27\x61\144\155\x69\x6e\72\72\x61\x70\x70\x2e\155\141\162\x6b\145\164\x69\x6e\x67\56\x70\x72\157\155\157\164\151\157\156\163\56\143\141\162\x74\x2d\x72\165\154\145\x73\x2e\x65\144\x69\x74\x2e\151\x73\55\x65\x71\x75\141\x6c\x2d\164\157\x27\51\42\xa\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x7d\x2c\40\x7b\xa\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\47\x6f\160\x65\x72\x61\x74\157\162\47\72\x20\x27\x21\x3d\47\54\12\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\x27\154\x61\142\145\x6c\x27\x3a\x20\42\x40\154\141\x6e\147\x28\x27\141\144\x6d\x69\x6e\72\72\141\160\x70\x2e\155\x61\162\153\x65\164\151\156\x67\56\160\x72\x6f\x6d\x6f\164\x69\x6f\156\163\56\143\x61\x72\x74\x2d\x72\165\x6c\x65\163\56\x65\x64\x69\x74\56\x69\x73\x2d\x6e\x6f\x74\x2d\x65\161\165\141\x6c\x2d\x74\x6f\47\51\42\xa\x20\40\40\40\40\x20\40\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\x7d\x5d\x2c\xa\40\40\x20\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\40\x20\x20\x20\47\x64\x61\164\145\47\x3a\x20\x5b\x7b\xa\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\40\x20\40\x27\x6f\x70\145\x72\141\x74\x6f\x72\47\72\40\47\x3d\x3d\x27\x2c\xa\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\47\154\x61\x62\145\154\47\72\40\x22\100\154\141\x6e\x67\x28\47\x61\x64\155\x69\156\72\72\141\160\160\56\x6d\141\162\x6b\145\x74\x69\x6e\x67\56\160\162\x6f\155\157\164\151\x6f\156\x73\x2e\143\x61\x72\164\55\x72\x75\x6c\x65\163\x2e\x65\144\x69\x74\56\x69\x73\x2d\x65\x71\165\x61\154\55\x74\x6f\47\x29\42\xa\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x7d\54\x20\173\xa\x20\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\47\157\x70\145\x72\x61\x74\157\162\47\72\40\47\41\75\x27\x2c\12\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\47\x6c\141\142\145\154\x27\72\x20\42\x40\154\141\156\147\50\x27\141\x64\155\151\156\72\x3a\141\160\x70\56\155\141\162\x6b\145\x74\x69\x6e\147\x2e\x70\162\157\x6d\157\164\x69\x6f\156\x73\56\143\x61\162\x74\x2d\162\x75\x6c\x65\163\x2e\145\x64\x69\x74\x2e\151\163\55\x6e\157\x74\x2d\x65\161\x75\x61\x6c\55\x74\x6f\47\51\x22\12\40\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\175\54\40\173\xa\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\47\x6f\x70\145\162\141\164\x6f\162\x27\72\40\47\x3e\x3d\47\54\xa\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\40\40\40\40\40\40\40\40\x20\x20\40\x20\40\47\154\141\142\145\154\47\x3a\40\42\100\x6c\141\156\147\x28\x27\x61\144\155\x69\156\72\x3a\141\x70\x70\x2e\x6d\x61\x72\x6b\145\164\x69\156\x67\x2e\160\x72\157\155\x6f\164\x69\157\156\163\56\x63\141\x72\164\x2d\x72\165\x6c\x65\x73\x2e\145\144\x69\164\56\145\x71\x75\x61\x6c\x73\55\x6f\162\x2d\147\x72\x65\x61\x74\x65\x72\x2d\x74\x68\x61\156\47\x29\42\12\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\175\54\x20\x7b\12\x20\40\x20\40\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\47\157\x70\145\x72\x61\164\157\162\x27\72\40\x27\74\x3d\x27\x2c\xa\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\x27\154\x61\x62\x65\154\x27\x3a\40\x22\x40\154\141\x6e\x67\50\47\141\144\x6d\151\x6e\72\72\x61\x70\160\x2e\x6d\141\162\153\145\x74\151\x6e\147\56\x70\x72\x6f\x6d\x6f\x74\151\157\156\163\x2e\143\x61\x72\x74\55\x72\165\154\x65\163\56\x65\144\x69\x74\56\x65\x71\165\141\x6c\163\x2d\x6f\162\x2d\x6c\145\163\x73\x2d\x74\150\x61\x6e\47\51\42\xa\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\40\40\x20\40\x20\x7d\x2c\x20\173\xa\40\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\47\157\160\x65\162\x61\x74\157\x72\47\72\40\47\76\47\54\xa\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\40\40\x20\40\40\47\x6c\x61\x62\x65\x6c\47\72\x20\42\x40\154\141\x6e\x67\50\47\x61\144\155\151\156\72\72\141\x70\x70\56\x6d\x61\x72\153\x65\164\x69\x6e\x67\56\160\162\157\x6d\157\164\151\x6f\156\163\56\x63\141\x72\x74\x2d\x72\x75\154\145\x73\x2e\x65\x64\151\x74\x2e\x67\x72\x65\x61\164\145\162\55\164\150\x61\x6e\x27\51\x22\xa\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x7d\54\40\173\12\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\x27\157\x70\145\162\141\x74\157\x72\47\x3a\40\x27\74\x27\54\xa\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\x27\154\x61\142\x65\154\x27\72\40\42\100\x6c\x61\x6e\x67\x28\x27\141\144\155\151\x6e\72\72\141\160\160\56\155\x61\162\x6b\145\164\x69\x6e\x67\56\x70\162\157\x6d\x6f\x74\x69\157\156\163\56\143\x61\162\164\55\162\x75\154\145\x73\x2e\145\x64\151\164\x2e\154\x65\x73\x73\x2d\x74\x68\x61\x6e\47\51\x22\12\x20\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\175\x5d\x2c\xa\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x27\144\141\164\145\x74\151\155\x65\x27\72\40\x5b\x7b\xa\40\x20\x20\40\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\47\157\x70\x65\x72\x61\x74\x6f\162\47\72\40\47\x3d\x3d\x27\x2c\12\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\40\47\x6c\141\x62\145\154\47\x3a\40\x22\100\x6c\141\156\147\x28\47\141\144\155\151\156\x3a\x3a\141\160\160\56\x6d\x61\162\153\145\x74\151\x6e\x67\56\x70\162\x6f\155\x6f\164\151\157\156\163\x2e\143\141\x72\164\55\162\165\x6c\x65\163\56\x65\x64\x69\x74\x2e\151\163\55\145\x71\165\141\x6c\x2d\164\157\47\x29\42\xa\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\40\x20\40\175\54\40\x7b\xa\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\40\47\157\x70\x65\x72\x61\x74\x6f\162\47\72\x20\x27\41\75\x27\x2c\12\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\47\x6c\141\x62\145\154\47\x3a\x20\x22\100\x6c\141\156\x67\50\47\141\x64\155\x69\156\x3a\72\141\x70\x70\56\155\141\x72\x6b\145\x74\151\x6e\147\x2e\x70\x72\157\x6d\157\164\151\157\x6e\163\56\x63\x61\x72\x74\55\162\165\154\x65\163\56\145\x64\151\x74\56\151\x73\x2d\x6e\x6f\164\x2d\x65\161\165\141\154\x2d\164\x6f\47\51\42\12\40\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\40\40\40\175\54\40\x7b\xa\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\x27\157\x70\x65\162\141\164\x6f\x72\x27\72\x20\x27\76\x3d\47\54\12\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x27\154\141\142\x65\154\x27\72\x20\42\100\x6c\141\156\147\x28\47\141\144\155\x69\156\x3a\72\x61\160\160\x2e\x6d\141\x72\153\145\164\x69\156\x67\56\x70\x72\x6f\x6d\x6f\x74\x69\157\x6e\163\56\143\x61\x72\x74\55\x72\x75\154\145\x73\56\x65\144\x69\164\56\x65\x71\165\x61\x6c\163\55\x6f\162\55\x67\162\x65\141\x74\145\x72\x2d\x74\150\141\x6e\47\51\x22\12\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\175\x2c\40\173\xa\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\47\x6f\x70\145\x72\141\x74\157\x72\47\72\x20\47\74\75\x27\54\12\40\40\40\x20\40\40\x20\x20\40\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\40\47\154\141\x62\145\154\x27\72\40\x22\100\154\x61\156\x67\50\47\x61\x64\155\x69\x6e\72\x3a\x61\x70\160\56\155\x61\162\x6b\x65\164\151\x6e\147\x2e\160\x72\x6f\155\157\164\151\x6f\x6e\163\56\143\141\162\164\x2d\x72\165\x6c\145\x73\x2e\145\x64\x69\x74\56\145\161\165\141\x6c\x73\x2d\157\162\x2d\x6c\x65\x73\163\55\164\150\x61\x6e\47\x29\x22\12\40\40\x20\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x7d\54\x20\173\xa\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\40\47\157\x70\x65\162\141\x74\x6f\162\47\x3a\x20\47\x3e\x27\54\xa\40\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\40\40\40\x20\40\40\x20\47\x6c\141\142\x65\x6c\47\x3a\40\x22\100\x6c\141\156\x67\50\x27\141\x64\155\151\x6e\72\x3a\141\160\x70\56\155\x61\162\153\x65\x74\151\x6e\x67\x2e\x70\162\157\x6d\157\x74\151\157\156\x73\x2e\143\x61\162\164\x2d\x72\x75\x6c\x65\x73\x2e\x65\144\151\x74\56\x67\x72\x65\141\164\x65\162\x2d\x74\150\x61\x6e\x27\x29\42\xa\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\175\x2c\40\x7b\12\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\40\47\x6f\160\x65\x72\141\x74\x6f\162\47\72\40\x27\x3c\47\54\12\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\x27\154\141\x62\x65\154\x27\72\40\x22\100\154\x61\x6e\x67\50\47\x61\x64\x6d\x69\x6e\72\72\141\x70\x70\x2e\155\141\x72\153\145\164\x69\x6e\147\x2e\160\162\157\x6d\x6f\164\x69\x6f\x6e\x73\x2e\x63\x61\x72\x74\55\x72\x75\154\145\x73\56\x65\x64\x69\164\56\x6c\145\x73\163\55\164\x68\141\x6e\47\x29\42\xa\40\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x7d\x5d\54\xa\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\47\163\x65\x6c\145\x63\x74\x27\x3a\40\133\173\xa\40\x20\40\40\x20\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\40\47\157\160\x65\x72\x61\164\x6f\162\x27\x3a\x20\47\x3d\75\47\x2c\12\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\47\x6c\141\x62\145\154\x27\x3a\x20\x22\100\154\x61\x6e\x67\x28\47\x61\x64\155\x69\x6e\x3a\x3a\141\160\160\x2e\x6d\x61\162\x6b\x65\164\x69\x6e\x67\56\x70\162\x6f\155\x6f\164\x69\157\x6e\163\x2e\143\x61\162\x74\x2d\162\x75\x6c\x65\163\x2e\145\144\151\164\56\151\163\55\x65\161\165\141\154\x2d\x74\x6f\47\x29\42\12\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\175\x2c\x20\173\xa\x20\x20\40\40\40\40\x20\40\40\x20\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\x20\40\40\47\157\x70\x65\x72\x61\x74\157\x72\47\72\x20\x27\x21\x3d\x27\54\12\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x27\154\141\142\x65\x6c\x27\x3a\x20\x22\100\x6c\x61\x6e\x67\50\x27\141\144\x6d\151\156\72\x3a\141\160\160\56\155\141\162\153\x65\164\x69\x6e\147\56\160\162\x6f\155\x6f\x74\151\x6f\x6e\163\x2e\143\x61\x72\x74\55\x72\x75\x6c\x65\x73\56\145\144\x69\164\56\151\x73\x2d\x6e\x6f\x74\55\x65\x71\165\141\154\x2d\x74\x6f\x27\x29\42\xa\x20\40\40\40\x20\40\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\40\40\40\x7d\x5d\54\12\x20\x20\x20\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\47\x72\141\144\x69\157\x27\x3a\40\x5b\x7b\12\40\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x27\x6f\x70\x65\162\x61\164\157\162\x27\x3a\x20\47\x3d\75\47\x2c\12\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\x20\x27\154\141\x62\145\x6c\x27\x3a\40\42\100\x6c\141\x6e\147\x28\x27\141\144\155\151\156\x3a\x3a\x61\160\x70\56\x6d\141\x72\153\145\164\x69\156\147\56\160\162\157\x6d\x6f\164\x69\157\x6e\163\56\143\x61\x72\164\x2d\162\x75\154\145\163\x2e\145\144\x69\x74\x2e\x69\x73\x2d\x65\x71\x75\141\154\55\x74\157\47\x29\x22\12\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x7d\54\x20\173\xa\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\x27\157\160\145\x72\141\x74\157\162\47\x3a\40\47\41\75\x27\54\xa\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\47\154\x61\x62\145\154\47\72\40\42\100\154\x61\156\x67\50\x27\141\x64\155\151\156\x3a\72\x61\160\x70\56\x6d\141\162\153\x65\x74\151\x6e\147\x2e\160\x72\157\155\157\164\x69\x6f\x6e\163\x2e\143\141\162\164\55\162\x75\x6c\x65\163\56\145\144\x69\x74\56\x69\163\55\x6e\157\164\55\145\x71\x75\x61\154\55\164\x6f\x27\x29\x22\xa\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\175\x5d\54\xa\40\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\47\x6d\x75\x6c\x74\x69\163\145\154\x65\143\x74\47\72\x20\x5b\173\xa\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\x27\x6f\x70\145\x72\x61\x74\157\162\47\x3a\40\x27\x7b\175\x27\x2c\xa\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\47\x6c\x61\142\145\154\x27\x3a\40\42\x40\154\141\x6e\x67\x28\47\x61\x64\155\x69\x6e\72\72\141\x70\x70\x2e\155\141\162\153\x65\x74\151\x6e\x67\56\160\x72\157\x6d\x6f\x74\151\157\x6e\x73\x2e\143\141\x72\x74\55\162\x75\154\x65\163\56\x65\x64\x69\x74\x2e\x63\157\x6e\164\x61\x69\156\x73\47\51\42\xa\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x7d\x2c\40\x7b\xa\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\40\40\40\40\x27\x6f\160\145\162\x61\164\157\x72\x27\72\x20\x27\x21\173\x7d\x27\x2c\xa\x20\x20\40\40\40\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\40\x27\x6c\141\142\x65\x6c\x27\72\40\x22\100\x6c\141\x6e\147\x28\x27\x61\144\x6d\x69\156\72\72\141\160\160\x2e\x6d\x61\162\x6b\x65\164\x69\156\x67\56\x70\x72\x6f\155\157\164\151\x6f\x6e\x73\56\x63\x61\162\164\55\162\165\x6c\x65\x73\56\145\x64\151\164\x2e\x64\157\x65\x73\55\x6e\157\164\55\143\157\156\164\x61\x69\x6e\x27\x29\x22\12\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\175\135\54\12\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\47\x63\x68\x65\143\153\142\157\170\47\72\40\x5b\x7b\xa\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\47\157\160\145\162\x61\164\x6f\162\x27\x3a\x20\x27\x7b\x7d\47\x2c\12\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\40\40\40\x27\x6c\141\x62\145\154\x27\x3a\40\x22\100\x6c\141\x6e\x67\x28\x27\x61\144\x6d\151\x6e\72\x3a\141\x70\x70\x2e\x6d\141\x72\153\x65\164\151\156\x67\x2e\x70\162\x6f\155\157\x74\151\x6f\156\163\x2e\x63\x61\162\164\x2d\162\x75\154\145\163\56\x65\144\151\164\x2e\x63\x6f\x6e\164\141\x69\156\163\47\x29\x22\12\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x7d\54\40\173\12\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\40\40\x20\40\x20\40\x20\x20\40\40\40\x27\157\160\x65\x72\x61\164\157\x72\47\72\x20\47\41\x7b\175\x27\54\12\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\47\154\141\142\145\154\47\x3a\40\42\x40\x6c\x61\x6e\x67\50\x27\141\x64\x6d\151\156\x3a\x3a\x61\x70\x70\56\155\x61\x72\153\145\164\151\x6e\147\x2e\x70\162\x6f\x6d\157\x74\x69\x6f\156\163\56\143\141\x72\x74\x2d\162\165\154\x65\x73\x2e\145\144\x69\164\x2e\x64\x6f\x65\x73\55\x6e\157\x74\x2d\143\157\156\x74\x61\x69\x6e\47\51\x22\12\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\x20\x20\40\40\40\x20\40\40\x20\40\x7d\135\12\40\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\x20\40\x7d\x2c\xa\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x7d\xa\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\175\x2c\xa\12\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x63\157\155\x70\x75\x74\x65\144\x3a\x20\x7b\12\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\x6d\x61\x74\x63\x68\145\x64\101\x74\164\162\x69\x62\x75\164\145\50\51\40\x7b\xa\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\151\x66\x20\x28\x74\150\x69\163\x2e\x63\157\x6e\144\151\164\151\x6f\x6e\x2e\141\164\x74\162\151\142\x75\x74\x65\x20\75\x3d\40\x27\47\51\xa\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\40\x72\x65\x74\165\x72\156\73\12\xa\x20\x20\40\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\40\x20\x6c\x65\164\40\163\x65\154\x66\40\x3d\x20\164\150\x69\163\73\12\xa\40\40\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x6c\145\x74\x20\141\164\164\x72\151\x62\x75\164\145\x49\156\144\145\x78\x20\75\40\164\150\151\x73\x2e\x61\164\x74\x72\151\x62\x75\164\145\124\x79\160\x65\x49\156\144\145\x78\145\163\133\x74\150\151\163\56\x63\157\156\144\151\x74\151\157\156\56\141\x74\x74\162\151\142\x75\x74\145\56\x73\x70\x6c\x69\164\50\x22\174\x22\51\x5b\x30\x5d\x5d\x3b\xa\xa\x20\40\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\154\145\164\x20\155\x61\164\143\x68\145\x64\x41\164\164\x72\x69\142\165\164\x65\x20\75\40\x74\150\x69\x73\56\143\x6f\x6e\x64\x69\x74\x69\157\156\101\164\x74\162\x69\142\x75\164\x65\163\x5b\141\x74\164\162\151\142\x75\164\x65\111\156\144\145\170\x5d\x5b\47\143\150\151\x6c\x64\x72\x65\x6e\x27\x5d\x2e\146\x69\154\164\145\x72\x28\146\165\x6e\143\164\151\157\156\x20\x28\x61\164\164\162\x69\x62\x75\x74\x65\x29\40\173\12\x20\40\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\40\40\x72\145\x74\165\x72\x6e\40\141\164\x74\162\151\142\x75\x74\x65\x2e\x6b\x65\171\40\x3d\75\x20\163\x65\x6c\146\56\x63\157\156\x64\x69\x74\x69\x6f\156\x2e\141\164\x74\162\151\x62\165\x74\x65\x3b\xa\x20\40\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x7d\51\73\xa\12\40\40\40\x20\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\x20\151\146\40\x28\x6d\141\164\143\x68\x65\144\x41\x74\164\162\x69\x62\x75\164\145\x5b\60\x5d\x5b\x27\x74\171\160\x65\x27\x5d\40\x3d\75\40\47\x6d\165\154\x74\151\x73\145\154\x65\143\x74\47\40\x7c\x7c\40\155\x61\164\x63\150\145\144\x41\164\x74\162\x69\142\165\x74\145\133\60\135\133\47\x74\x79\x70\145\47\135\40\x3d\x3d\40\47\143\x68\x65\x63\153\142\157\170\x27\x29\x20\x7b\xa\xa\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\x74\x68\x69\163\x2e\x63\x6f\156\x64\151\x74\x69\157\156\x2e\x76\141\x6c\x75\145\x20\75\40\x74\150\x69\163\x2e\x63\x6f\156\x64\151\164\x69\157\156\x2e\x76\x61\x6c\x75\145\x20\x3d\x3d\x20\x27\x27\x20\x26\46\x20\164\150\x69\x73\56\143\x6f\156\144\x69\164\151\x6f\156\x2e\x76\x61\154\165\x65\x20\x21\75\40\x75\156\x64\x65\146\x69\156\x65\x64\xa\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\x20\x20\77\40\133\135\xa\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\72\40\101\162\162\141\171\x2e\x69\163\101\x72\x72\141\171\50\x74\x68\151\163\x2e\x63\x6f\x6e\x64\151\164\x69\x6f\156\x2e\166\x61\154\x75\145\x29\x20\x3f\x20\164\150\151\163\56\143\x6f\156\x64\151\164\x69\157\156\56\x76\x61\x6c\x75\x65\x20\x3a\x20\133\135\x3b\12\x20\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\175\xa\xa\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\162\145\x74\x75\162\x6e\40\155\141\x74\x63\x68\145\144\x41\164\164\x72\x69\x62\x75\x74\x65\x5b\x30\x5d\73\xa\40\x20\40\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\175\x2c\xa\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\175\54\xa\xa\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\155\x65\164\x68\157\144\x73\x3a\x20\x7b\xa\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\40\x20\40\40\40\x72\145\x6d\x6f\x76\x65\x43\x6f\x6e\x64\x69\x74\x69\x6f\156\x28\51\x20\173\12\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\164\x68\151\x73\56\44\x65\x6d\x69\x74\50\47\x6f\x6e\122\145\155\x6f\166\145\103\157\156\144\x69\164\151\x6f\x6e\x27\x2c\40\164\x68\x69\163\56\143\157\x6e\x64\x69\x74\x69\157\156\51\xa\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\175\54\12\40\40\40\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x7d\54\xa\40\x20\40\x20\40\40\40\x20\40\40\40\40\175\51\73\xa\40\40\x20\x20\x20\40\40\x20\74\x2f\163\x63\x72\151\x70\x74\76\xa\12\x20\40\40\40\x20\x20\40\40\x3c\41\x2d\55\x20\166\x20\143\x72\x65\x61\164\145\x20\x63\157\x75\160\157\156\40\146\x6f\x72\155\x20\55\55\x3e\xa\x20\40\x20\x20\x20\40\40\40\x3c\163\x63\x72\x69\160\164\xa\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x74\x79\160\x65\x3d\x22\x74\145\170\164\57\x78\55\x74\x65\x6d\x70\154\x61\x74\145\x22\12\x20\40\x20\x20\40\40\x20\40\x20\x20\40\40\x69\144\75\x22\166\55\143\162\x65\x61\164\x65\x2d\x63\157\165\x70\x6f\x6e\x2d\x66\157\x72\x6d\55\164\x65\x6d\160\x6c\141\x74\145\x22\12\40\x20\x20\40\40\40\40\x20\x3e\12\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\40\74\x64\x69\166\x20\143\x6c\141\x73\163\x3d\x22\x70\x2d\x34\x20\142\147\55\x77\x68\x69\164\145\40\x64\x61\162\153\72\142\147\x2d\x67\162\141\x79\55\x39\x30\x30\40\162\x6f\165\x6e\144\x65\x64\40\x62\157\170\55\x73\150\x61\x64\x6f\x77\x22\x3e\12\40\x20\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x3c\x64\x69\x76\40\x63\154\141\x73\163\x3d\42\147\x72\x69\x64\40\147\x61\x70\x2d\x31\x2e\x35\x22\76\xa\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\74\x70\40\143\154\141\x73\x73\75\x22\x6d\142\55\64\x20\x74\145\x78\x74\x2d\142\x61\x73\145\x20\164\x65\x78\164\x2d\147\162\141\171\55\x38\60\60\x20\x64\x61\162\153\x3a\164\x65\170\164\x2d\x77\150\151\x74\145\x20\x66\157\x6e\x74\55\163\145\x6d\151\142\157\154\x64\x22\x3e\xa\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\100\154\x61\156\x67\50\x27\x61\x64\x6d\x69\x6e\72\x3a\x61\160\x70\x2e\155\141\162\x6b\x65\164\151\x6e\147\56\160\162\x6f\x6d\157\x74\x69\x6f\x6e\x73\x2e\143\x61\162\x74\55\162\x75\x6c\x65\163\56\x65\x64\x69\x74\x2e\143\x6f\x75\x70\x6f\156\x2d\143\x6f\144\x65\47\51\12\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\x20\x3c\57\x70\76\12\xa\40\x20\x20\40\40\40\x20\40\40\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x3c\x78\55\x61\144\x6d\x69\x6e\x3a\x3a\x66\157\x72\x6d\12\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x76\55\x73\x6c\157\164\x3d\x22\x7b\40\x6d\x65\x74\x61\54\x20\145\162\x72\157\x72\163\x2c\40\150\141\x6e\x64\x6c\x65\x53\165\142\x6d\x69\x74\x20\x7d\42\12\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x61\163\x3d\x22\144\151\x76\42\12\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\40\76\xa\x20\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\40\x20\40\x3c\146\x6f\162\155\40\x40\163\165\142\155\151\164\75\x22\150\x61\x6e\144\154\145\123\x75\x62\x6d\151\164\50\x24\x65\x76\145\x6e\164\x2c\x20\x73\164\x6f\x72\145\x29\42\76\12\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\x3c\x64\x69\166\x20\x63\x6c\141\163\x73\75\42\146\154\145\x78\40\x67\141\160\x2d\64\40\x20\155\141\x78\x2d\x73\x6d\x3a\146\154\145\x78\x2d\167\x72\141\160\x22\x3e\xa\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\74\144\x69\166\x20\143\x6c\x61\163\x73\75\x22\x77\55\x66\x75\154\154\x20\155\x62\55\62\56\65\x22\x3e\12\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\74\x78\55\141\144\155\151\x6e\x3a\72\x66\x6f\x72\155\x2e\143\157\156\164\162\x6f\154\x2d\x67\x72\157\165\160\x3e\12\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\40\40\40\x20\x3c\170\x2d\141\x64\155\151\x6e\x3a\72\x66\157\162\x6d\56\x63\157\x6e\164\162\x6f\x6c\55\147\162\x6f\165\160\x2e\154\141\142\145\154\x20\143\x6c\141\163\x73\75\42\162\145\x71\x75\151\162\x65\144\42\76\12\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\40\40\100\x6c\141\x6e\147\x28\47\x61\144\x6d\151\156\72\72\x61\160\160\x2e\x6d\141\x72\153\145\x74\x69\156\147\56\160\x72\157\155\x6f\164\151\157\156\163\x2e\x63\141\162\164\55\162\x75\x6c\145\x73\56\x65\144\x69\x74\x2e\143\x6f\165\x70\157\156\x2d\x71\x74\171\47\51\xa\x20\40\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\74\x2f\x78\x2d\141\x64\x6d\151\156\x3a\x3a\x66\157\x72\x6d\56\x63\157\156\x74\x72\157\x6c\x2d\x67\162\157\165\x70\56\x6c\x61\x62\145\154\x3e\12\xa\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\40\74\170\55\141\x64\x6d\151\156\72\x3a\x66\x6f\x72\x6d\56\x63\x6f\156\x74\x72\x6f\x6c\x2d\x67\x72\x6f\165\x70\56\143\157\156\x74\162\157\x6c\12\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\40\164\x79\x70\x65\75\42\x74\x65\170\x74\x22\12\40\x20\x20\40\x20\40\x20\40\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\40\x20\x20\151\144\x3d\42\x63\x6f\165\160\x6f\x6e\x5f\x71\x74\x79\42\12\40\40\x20\40\40\x20\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\x6e\x61\155\145\75\x22\x63\157\x75\160\157\156\x5f\x71\164\x79\42\12\x20\40\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\40\40\x72\x75\154\145\x73\75\42\x72\145\x71\165\x69\x72\145\x64\x7c\x6d\x69\x6e\137\x76\x61\x6c\x75\145\72\x31\x22\12\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\40\x76\55\x6d\157\x64\145\x6c\75\42\x63\x6f\x75\160\157\156\x5f\146\157\x72\155\141\164\56\143\x6f\165\x70\x6f\156\x5f\161\x74\171\42\12\40\x20\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\40\40\x20\x20\x3a\x6c\141\x62\x65\x6c\x3d\x22\164\x72\141\156\x73\x28\x27\x61\144\155\151\156\x3a\x3a\141\160\160\56\155\141\162\153\x65\164\151\x6e\x67\56\160\x72\x6f\155\157\x74\x69\157\156\163\56\x63\141\162\x74\x2d\162\165\x6c\x65\163\x2e\x65\x64\151\164\x2e\x63\x6f\165\x70\x6f\156\x2d\x71\x74\x79\x27\51\x22\xa\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\40\40\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\x20\72\160\x6c\x61\x63\145\x68\157\x6c\144\x65\162\75\42\x74\x72\x61\x6e\163\50\47\141\x64\x6d\151\156\x3a\72\x61\160\x70\56\x6d\x61\x72\x6b\145\x74\x69\x6e\x67\x2e\x70\162\157\155\x6f\164\x69\157\x6e\x73\56\143\x61\162\x74\55\162\x75\x6c\x65\x73\56\145\144\x69\164\56\143\157\165\160\157\156\55\x71\164\x79\x27\51\42\12\x20\40\40\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\57\x3e\12\12\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\40\40\x3c\170\55\141\144\155\151\x6e\x3a\x3a\146\157\162\x6d\x2e\143\x6f\x6e\164\x72\157\x6c\55\x67\162\x6f\165\x70\x2e\x65\162\x72\x6f\162\40\143\x6f\x6e\164\162\157\154\x2d\x6e\141\155\x65\x3d\42\x63\157\x75\x70\157\x6e\x5f\x71\x74\x79\x22\40\x2f\x3e\12\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\40\74\x2f\170\55\141\x64\x6d\151\156\72\72\x66\x6f\162\155\56\x63\x6f\156\x74\162\157\154\x2d\147\x72\x6f\165\x70\76\12\40\40\40\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\74\57\144\x69\x76\x3e\xa\xa\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\x20\40\x20\40\74\144\x69\x76\x20\143\x6c\141\x73\x73\x3d\42\x77\x2d\x66\x75\154\154\x20\155\x62\x2d\62\56\65\42\x3e\12\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\40\40\40\x20\40\x20\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\74\x78\55\x61\144\x6d\x69\x6e\x3a\x3a\x66\157\162\x6d\56\143\157\x6e\164\x72\157\154\x2d\x67\162\x6f\x75\160\x3e\xa\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\74\170\55\x61\x64\155\151\x6e\72\72\x66\157\x72\155\56\143\x6f\x6e\x74\162\x6f\154\x2d\x67\162\x6f\x75\x70\x2e\154\x61\x62\145\x6c\x20\143\x6c\x61\163\x73\75\x22\162\145\x71\165\151\x72\x65\144\42\76\12\x20\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x40\154\141\156\x67\50\x27\x61\144\x6d\151\x6e\72\72\141\x70\x70\56\155\141\162\153\x65\x74\151\156\147\56\x70\162\157\155\157\164\151\157\x6e\x73\56\x63\141\162\164\55\x72\165\154\x65\x73\x2e\x65\144\151\164\x2e\143\x6f\165\160\157\x6e\x2d\154\145\156\x67\x74\x68\x27\51\xa\40\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\74\x2f\170\x2d\x61\144\x6d\151\x6e\72\72\x66\x6f\162\155\x2e\x63\x6f\x6e\x74\x72\x6f\154\x2d\147\x72\157\x75\x70\x2e\x6c\141\x62\145\154\76\12\xa\x20\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\x20\74\170\55\141\144\x6d\x69\x6e\72\72\x66\157\162\155\x2e\143\x6f\x6e\164\x72\x6f\154\x2d\147\162\x6f\x75\x70\56\143\157\x6e\164\x72\x6f\x6c\12\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x74\x79\160\x65\75\x22\x74\145\170\164\x22\12\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\156\141\155\x65\x3d\x22\x63\157\144\145\137\x6c\145\156\147\164\150\x22\xa\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\151\144\75\42\143\157\144\145\x5f\154\x65\156\x67\x74\x68\x22\12\x20\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x72\x75\154\145\163\x3d\42\x72\145\x71\x75\x69\162\145\x64\x7c\155\x69\x6e\x5f\x76\x61\154\165\145\72\x31\x22\12\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\40\x20\x20\40\x20\40\40\40\40\x20\40\40\40\x20\40\40\40\166\55\x6d\x6f\144\145\x6c\75\42\143\157\165\160\x6f\x6e\137\x66\x6f\x72\x6d\141\164\x2e\143\x6f\x64\145\137\154\145\x6e\x67\164\150\x22\12\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\72\x6c\141\142\x65\x6c\x3d\x22\x74\162\x61\156\163\x28\47\x61\144\155\x69\156\x3a\x3a\141\x70\x70\x2e\x6d\141\162\153\145\x74\151\156\147\56\160\x72\x6f\155\x6f\164\x69\x6f\x6e\x73\56\143\x61\x72\164\x2d\162\x75\x6c\x65\163\56\145\144\x69\164\x2e\143\x6f\x75\160\x6f\156\x2d\154\x65\x6e\x67\164\150\47\51\x22\xa\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\40\40\40\x3a\x70\x6c\x61\x63\145\150\x6f\154\144\145\x72\x3d\x22\x74\162\141\x6e\x73\50\47\141\144\x6d\x69\x6e\x3a\x3a\x61\160\160\56\x6d\x61\162\x6b\145\x74\151\156\147\56\x70\162\x6f\155\157\x74\x69\x6f\x6e\163\56\143\x61\x72\x74\x2d\x72\x75\x6c\x65\163\56\145\x64\x69\x74\56\143\157\x75\x70\157\156\x2d\x6c\145\156\147\x74\150\x27\x29\x22\12\40\40\40\x20\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\57\x3e\xa\xa\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\74\x78\55\x61\144\x6d\151\156\72\x3a\x66\x6f\x72\x6d\x2e\143\x6f\x6e\164\162\157\x6c\55\x67\162\157\165\x70\x2e\x65\162\x72\x6f\x72\40\x63\157\156\x74\x72\x6f\x6c\x2d\156\141\155\145\x3d\x22\143\157\x64\x65\137\154\x65\x6e\x67\x74\x68\42\x20\57\76\12\x20\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x3c\x2f\x78\x2d\x61\x64\x6d\151\x6e\72\x3a\x66\x6f\162\x6d\x2e\143\157\x6e\164\162\157\x6c\55\147\162\x6f\x75\x70\76\12\40\x20\x20\40\40\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\x20\x20\40\40\x20\74\57\144\151\x76\x3e\xa\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\x3c\57\144\x69\166\x3e\12\xa\x20\40\x20\40\40\40\40\40\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\40\40\x20\40\40\x20\40\40\x3c\144\151\166\40\143\x6c\x61\x73\x73\x3d\42\146\154\x65\x78\40\x67\x61\160\x2d\64\x20\155\141\x78\x2d\x73\155\x3a\146\154\145\x78\55\x77\x72\141\x70\42\x3e\xa\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\x20\40\x20\74\144\151\166\40\143\x6c\141\x73\163\x3d\x22\x77\55\x66\165\x6c\154\x20\x6d\x62\x2d\62\56\x35\x22\x3e\12\x20\x20\40\40\40\40\x20\40\x20\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\x20\40\40\x20\x3c\x78\55\x61\x64\155\x69\156\72\x3a\x66\157\162\155\x2e\143\157\156\x74\162\157\x6c\55\147\x72\157\x75\160\x3e\12\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\x3c\170\55\141\144\x6d\151\x6e\72\72\x66\x6f\162\155\x2e\x63\x6f\156\164\162\157\x6c\x2d\x67\162\x6f\165\x70\x2e\x6c\x61\142\x65\x6c\x20\143\154\x61\x73\x73\x3d\x22\162\145\x71\165\x69\x72\145\144\x22\x3e\12\x20\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\x20\40\x40\x6c\x61\x6e\x67\x28\x27\141\x64\155\151\x6e\72\x3a\x61\160\x70\x2e\155\141\x72\x6b\145\x74\151\x6e\147\56\x70\x72\157\155\x6f\x74\x69\157\156\x73\56\143\x61\x72\x74\x2d\162\x75\x6c\145\x73\x2e\145\x64\151\164\56\143\157\144\x65\x2d\146\157\x72\x6d\x61\164\47\51\12\40\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\74\57\170\55\x61\x64\155\x69\x6e\x3a\x3a\146\157\162\155\x2e\143\157\x6e\x74\x72\x6f\154\55\x67\x72\157\x75\160\x2e\x6c\141\x62\x65\x6c\76\xa\12\x20\x20\40\40\40\x20\40\x20\40\40\x20\x20\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\74\x78\x2d\141\144\155\151\156\72\72\x66\157\x72\155\56\143\x6f\156\164\162\x6f\x6c\x2d\147\162\x6f\165\160\56\143\x6f\x6e\164\x72\x6f\154\xa\x20\x20\x20\40\x20\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x74\x79\160\x65\x3d\42\x73\145\154\x65\x63\x74\42\xa\x20\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\151\x64\x3d\42\143\157\x64\x65\137\x66\x6f\162\155\141\x74\x22\12\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\x63\x6c\141\163\x73\x3d\42\154\164\162\72\x70\x72\x2d\x31\x30\40\162\164\x6c\72\160\x6c\55\61\60\42\xa\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\40\x6e\141\155\x65\75\42\143\x6f\x64\x65\137\x66\x6f\x72\x6d\x61\164\42\xa\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\162\165\x6c\145\x73\x3d\x22\162\x65\x71\x75\151\x72\x65\144\42\xa\x20\40\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x76\55\155\157\x64\145\x6c\x3d\42\x63\157\x75\160\x6f\156\x5f\x66\x6f\162\x6d\141\x74\56\x63\x6f\x64\x65\x5f\x66\x6f\162\x6d\141\164\42\xa\40\40\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\x3a\x6c\141\x62\145\154\75\42\164\x72\141\156\x73\x28\x27\x61\144\155\151\156\72\72\x61\x70\160\x2e\x6d\x61\x72\x6b\x65\x74\151\156\x67\x2e\x70\x72\157\x6d\x6f\x74\x69\157\156\x73\56\143\141\x72\164\55\162\x75\154\x65\163\56\145\144\x69\164\x2e\x63\157\144\x65\x2d\x66\x6f\162\155\141\x74\47\x29\42\12\40\40\40\x20\x20\40\40\40\x20\x20\40\40\40\40\40\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\40\40\x3a\160\x6c\141\143\x65\x68\157\x6c\144\x65\x72\75\42\x74\x72\141\156\163\x28\x27\x61\144\x6d\x69\x6e\72\72\141\160\160\56\x6d\141\x72\x6b\x65\x74\151\x6e\x67\56\160\162\x6f\155\157\x74\x69\x6f\x6e\163\56\x63\141\x72\x74\55\162\165\154\x65\x73\56\x65\144\151\x74\x2e\143\x6f\x64\x65\55\x66\x6f\x72\x6d\x61\164\x27\x29\x22\12\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\40\40\x20\40\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\x20\40\40\76\xa\x20\40\40\40\40\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\40\74\x6f\160\x74\x69\157\156\xa\x20\40\40\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\166\141\154\x75\x65\x3d\x22\141\154\x70\150\141\156\x75\x6d\x65\162\x69\x63\x22\12\x20\40\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\40\x20\40\x20\40\40\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\76\12\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\40\x40\x6c\141\156\147\x28\47\x61\x64\x6d\x69\156\72\72\141\160\x70\56\155\x61\162\x6b\x65\x74\x69\156\147\56\x70\x72\x6f\x6d\x6f\164\x69\x6f\x6e\x73\56\143\x61\162\x74\55\x72\165\x6c\x65\x73\x2e\145\144\151\164\x2e\141\154\160\150\x61\156\x75\155\145\x72\x69\143\x27\51\12\x20\40\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\40\40\x20\40\40\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\40\40\40\x3c\x2f\157\160\x74\x69\x6f\156\x3e\12\xa\40\x20\40\40\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x3c\x6f\160\164\x69\x6f\x6e\12\x20\40\40\40\40\40\40\40\40\x20\x20\40\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\40\x20\166\141\154\x75\145\x3d\x22\x61\x6c\x70\150\141\142\x65\x74\151\x63\141\154\42\xa\40\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\40\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\40\40\x20\x20\40\76\12\40\40\x20\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\x20\40\100\x6c\141\x6e\147\x28\47\x61\x64\x6d\151\x6e\x3a\72\x61\x70\x70\x2e\x6d\x61\162\x6b\x65\x74\151\156\x67\x2e\160\162\157\155\157\164\x69\x6f\x6e\163\56\x63\x61\x72\164\x2d\162\x75\154\145\x73\x2e\145\x64\x69\x74\56\x61\x6c\x70\x68\x61\x62\145\x74\x69\143\141\x6c\47\x29\12\x20\x20\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\x20\40\x20\x20\74\57\157\x70\164\x69\157\x6e\76\12\12\x20\40\x20\x20\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\40\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\40\x20\40\40\40\x20\40\40\x20\74\157\x70\x74\151\x6f\x6e\xa\x20\40\40\40\40\40\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\x20\40\40\x20\x20\x20\166\141\154\165\145\x3d\x22\156\x75\x6d\x65\162\x69\143\42\12\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\40\40\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\76\12\40\40\x20\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\40\x20\40\x20\40\40\x40\154\x61\156\x67\50\x27\141\144\155\151\156\x3a\x3a\141\x70\x70\56\x6d\141\162\x6b\145\x74\151\x6e\x67\56\160\162\157\155\157\164\x69\x6f\156\x73\56\143\141\162\x74\x2d\162\x75\x6c\145\x73\x2e\x65\144\151\x74\56\x6e\x75\x6d\145\x72\x69\x63\x27\51\xa\40\40\x20\40\40\x20\x20\40\40\x20\40\40\x20\x20\40\x20\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\40\40\40\40\x20\40\x20\x20\40\x20\40\x20\x3c\57\157\160\x74\151\x6f\x6e\76\12\40\40\x20\40\40\x20\x20\40\x20\40\40\x20\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\40\40\40\40\x20\x20\40\x20\x3c\57\170\x2d\141\144\155\151\156\72\x3a\x66\x6f\162\x6d\x2e\x63\157\156\x74\x72\157\x6c\55\x67\x72\157\x75\x70\56\x63\x6f\x6e\164\x72\157\154\x3e\xa\xa\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\x3c\x78\x2d\x61\144\x6d\x69\156\x3a\x3a\146\x6f\x72\155\56\143\157\x6e\x74\162\x6f\154\55\147\x72\x6f\x75\x70\x2e\145\x72\162\x6f\162\x20\x63\x6f\156\x74\x72\x6f\154\55\x6e\141\155\x65\75\x22\x63\x6f\144\x65\x5f\146\157\x72\x6d\x61\164\42\40\57\76\xa\40\40\x20\40\40\40\40\40\40\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\x3c\57\x78\x2d\141\144\x6d\151\x6e\x3a\x3a\146\157\x72\x6d\x2e\x63\157\x6e\164\162\157\x6c\55\x67\x72\157\165\160\76\12\12\40\40\40\40\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\40\40\40\40\40\40\40\40\40\40\40\74\170\x2d\x61\x64\x6d\x69\x6e\x3a\x3a\x66\157\x72\x6d\x2e\143\x6f\156\x74\162\x6f\x6c\x2d\x67\162\157\165\x70\76\xa\x20\40\40\40\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\40\40\x3c\x78\x2d\x61\x64\155\151\x6e\x3a\72\146\157\162\x6d\56\x63\157\156\164\162\x6f\154\x2d\x67\162\157\165\160\56\154\141\x62\145\x6c\76\12\x20\x20\40\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\40\x20\40\40\40\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\x40\x6c\x61\x6e\147\x28\x27\141\x64\155\151\156\72\72\x61\x70\160\56\155\x61\162\x6b\x65\x74\x69\156\x67\56\160\x72\157\155\x6f\x74\151\157\x6e\163\x2e\x63\141\162\164\x2d\162\x75\154\x65\163\56\x65\144\151\x74\56\x63\157\x64\x65\55\160\162\145\146\151\170\47\51\xa\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\40\40\40\40\x20\x20\40\40\40\40\x20\x20\40\40\x20\x20\40\x20\x3c\x2f\170\55\141\x64\155\151\x6e\x3a\72\x66\157\162\x6d\56\143\157\x6e\x74\x72\x6f\154\x2d\147\x72\x6f\x75\160\56\x6c\141\142\145\154\76\12\12\40\40\40\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\40\x20\40\40\40\40\40\40\40\40\40\x20\x20\40\40\40\40\x3c\x78\55\x61\144\x6d\x69\x6e\72\x3a\146\x6f\x72\155\x2e\x63\157\x6e\x74\x72\x6f\x6c\55\x67\162\x6f\165\160\x2e\x63\157\156\x74\x72\157\x6c\xa\x20\x20\40\40\x20\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\40\40\x20\x20\40\40\40\40\40\40\x20\40\x20\x20\40\40\40\40\40\x20\40\x20\40\40\40\x74\x79\160\145\75\42\164\x65\x78\x74\x22\xa\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\40\151\x64\75\x22\143\x6f\144\145\x5f\160\162\145\146\151\x78\42\xa\40\40\40\x20\40\40\40\40\40\40\40\40\40\40\40\x20\40\x20\40\x20\40\40\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\x20\156\x61\x6d\145\x3d\42\143\157\x64\x65\x5f\160\162\x65\x66\151\170\x22\12\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x76\x2d\x6d\157\144\x65\x6c\75\42\x63\157\165\x70\157\156\137\x66\x6f\x72\x6d\141\x74\56\143\157\144\x65\x5f\x70\x72\145\x66\151\170\x22\xa\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\x20\x20\40\x20\x20\x20\40\40\x20\40\x20\x20\40\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\x3a\154\x61\x62\145\154\x3d\42\164\162\x61\x6e\163\x28\x27\x61\144\155\151\156\72\x3a\x61\x70\160\x2e\155\x61\162\153\x65\164\x69\x6e\x67\56\x70\162\157\x6d\157\164\151\157\x6e\x73\x2e\x63\x61\x72\x74\55\x72\165\x6c\x65\x73\56\145\x64\151\x74\56\143\157\144\x65\x2d\x70\162\145\146\151\170\x27\51\x22\12\x20\40\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\40\40\x20\40\40\40\x3a\x70\x6c\141\143\145\x68\157\154\144\145\x72\75\42\x74\162\141\156\x73\x28\47\141\x64\155\x69\156\72\x3a\x61\x70\160\56\155\x61\162\153\145\164\151\x6e\x67\56\x70\162\157\x6d\157\164\x69\x6f\156\x73\x2e\143\141\162\x74\55\162\165\x6c\145\163\56\145\144\x69\x74\56\143\x6f\x64\x65\x2d\160\162\x65\146\x69\170\47\51\42\xa\40\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\x20\40\x20\x20\40\40\x20\40\40\57\x3e\xa\xa\40\x20\x20\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\40\x20\40\x20\40\40\40\x20\x20\40\x20\40\x20\40\40\74\170\55\x61\x64\x6d\151\x6e\72\72\x66\157\162\x6d\x2e\143\157\156\164\162\x6f\154\55\x67\x72\157\x75\x70\x2e\x65\162\162\157\x72\40\x63\x6f\x6e\164\162\x6f\x6c\55\156\141\155\x65\75\x22\143\157\144\x65\x5f\x70\162\145\146\x69\x78\x22\x20\57\76\12\40\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\x20\40\40\40\x20\74\57\x78\55\x61\144\155\151\x6e\72\x3a\146\157\x72\x6d\56\x63\157\x6e\164\162\x6f\x6c\x2d\x67\x72\x6f\165\x70\x3e\12\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\x20\40\40\40\x20\40\40\74\x2f\x64\x69\x76\x3e\12\12\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\40\40\x20\40\x20\40\40\x3c\x64\151\166\x20\143\x6c\141\163\163\x3d\x22\167\55\146\165\154\154\40\155\x62\x2d\62\x2e\65\42\76\12\40\x20\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x20\x20\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\x20\x20\74\x78\55\x61\144\155\151\156\72\72\146\x6f\162\155\x2e\x63\157\x6e\164\x72\157\154\55\147\162\x6f\165\x70\76\xa\40\40\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\40\x20\x20\x20\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\x20\40\x20\40\x3c\170\55\141\x64\155\151\x6e\72\72\x66\157\162\x6d\56\143\157\156\x74\x72\157\x6c\55\147\x72\157\x75\160\x2e\154\141\x62\145\154\76\xa\x20\x20\40\x20\40\40\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\40\x20\40\100\x6c\141\x6e\147\50\x27\141\x64\x6d\x69\156\72\72\141\x70\160\56\155\141\162\x6b\x65\164\151\x6e\147\56\x70\x72\157\155\157\x74\x69\157\x6e\163\x2e\143\x61\x72\x74\x2d\x72\x75\154\145\x73\56\145\144\x69\x74\x2e\143\x6f\x64\x65\55\163\x75\x66\146\151\x78\x27\x29\12\x20\x20\x20\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\74\57\170\x2d\x61\144\x6d\151\x6e\x3a\x3a\146\157\162\155\56\143\x6f\156\164\x72\157\154\55\147\x72\x6f\165\x70\x2e\x6c\x61\142\145\154\76\xa\12\x20\x20\x20\x20\40\x20\40\x20\40\40\x20\x20\40\40\40\x20\40\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\x20\40\40\40\40\x20\40\40\x20\40\x20\74\x78\55\141\144\155\x69\156\72\72\x66\x6f\x72\x6d\56\143\157\156\164\162\x6f\x6c\55\x67\x72\x6f\x75\160\x2e\143\x6f\156\x74\x72\157\x6c\12\40\x20\x20\40\x20\40\x20\40\40\40\40\40\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\40\x20\x20\40\164\171\x70\145\x3d\x22\x74\145\x78\x74\42\12\40\40\40\x20\x20\x20\40\x20\40\40\x20\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x69\144\75\x22\143\157\144\145\137\x73\x75\146\146\x69\x78\42\xa\x20\x20\x20\40\40\40\x20\x20\x20\40\40\40\40\40\x20\40\40\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\x20\40\x20\x20\x20\x20\x20\156\x61\155\145\x3d\x22\x63\157\144\x65\x5f\163\165\146\x66\151\170\x22\12\x20\x20\40\40\x20\40\40\40\40\40\40\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\40\x20\40\40\x20\40\40\x20\x20\x20\166\x2d\155\157\144\x65\x6c\75\x22\143\x6f\x75\160\157\156\x5f\146\157\162\x6d\x61\164\x2e\x63\157\x64\x65\x5f\163\165\x66\146\x69\x78\x22\xa\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\40\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x3a\154\141\x62\x65\154\75\x22\164\x72\x61\x6e\x73\50\47\141\x64\x6d\151\x6e\x3a\72\141\x70\x70\x2e\x6d\x61\162\x6b\x65\x74\x69\156\147\56\160\x72\x6f\155\157\164\151\157\156\163\56\143\x61\162\164\55\162\165\154\x65\x73\x2e\x65\x64\x69\164\x2e\x63\157\144\x65\x2d\x73\x75\x66\x66\x69\x78\47\51\x22\xa\x20\40\40\40\40\40\40\x20\x20\x20\x20\40\40\40\x20\x20\x20\x20\40\x20\40\40\40\40\40\x20\40\x20\x20\x20\40\40\x20\40\40\x20\40\x20\x20\x20\x20\x20\x20\x20\72\160\x6c\141\143\x65\150\x6f\154\144\x65\162\75\42\164\162\141\156\163\50\47\141\144\x6d\x69\x6e\72\72\141\160\x70\x2e\x6d\141\162\x6b\x65\x74\x69\x6e\x67\x2e\160\x72\x6f\x6d\157\164\151\157\156\x73\x2e\x63\141\162\164\55\x72\165\154\x65\x73\x2e\x65\x64\151\x74\56\x63\157\144\145\55\163\165\146\x66\x69\x78\x27\x29\42\xa\40\x20\40\40\x20\40\x20\40\40\x20\x20\40\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\40\x20\x20\x20\40\x2f\76\xa\12\x20\x20\x20\x20\x20\40\40\x20\x20\40\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\40\40\x20\x20\x20\40\x20\40\x20\74\170\55\141\x64\x6d\151\x6e\x3a\x3a\x66\x6f\x72\155\56\x63\157\x6e\164\162\x6f\154\x2d\147\x72\157\165\160\56\145\x72\162\x6f\162\x20\143\x6f\156\164\x72\x6f\154\55\156\141\155\145\x3d\x22\143\157\144\145\x5f\163\x75\146\x66\x69\x78\x22\x20\x2f\76\xa\40\40\40\40\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\40\40\40\40\40\x20\40\x20\40\40\40\x20\x20\40\40\x3c\57\170\x2d\x61\x64\x6d\151\156\72\x3a\146\157\162\x6d\x2e\x63\157\156\164\162\x6f\x6c\x2d\147\x72\x6f\x75\160\x3e\12\x20\x20\40\40\40\40\x20\x20\40\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x3c\57\144\x69\166\x3e\xa\40\40\40\40\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\x3c\57\x64\151\166\76\12\12\x20\x20\x20\x20\40\40\40\40\40\40\40\40\40\40\40\x20\40\40\40\40\x20\x20\x20\x20\40\x20\40\40\74\x62\165\x74\164\x6f\x6e\xa\40\x20\40\x20\x20\40\40\40\40\40\x20\x20\40\40\40\40\x20\40\40\x20\40\x20\40\40\x20\40\40\40\x20\40\40\x20\164\x79\160\145\75\x22\x73\165\x62\155\x69\164\x22\xa\40\x20\x20\x20\40\40\40\40\x20\40\40\40\x20\40\40\40\40\x20\40\40\40\x20\40\40\40\40\40\x20\40\x20\x20\40\143\x6c\141\163\163\75\x22\x70\162\151\x6d\141\162\171\55\x62\165\x74\164\157\156\x22\xa\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\x20\x20\40\40\40\x20\x20\40\x20\40\x20\x20\76\xa\40\x20\x20\40\40\40\40\40\40\40\40\40\40\40\40\40\40\x20\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\x20\x20\100\154\141\156\x67\50\x27\141\x64\155\151\x6e\x3a\72\141\x70\x70\x2e\x6d\141\162\153\145\164\x69\156\147\56\x70\x72\157\x6d\x6f\x74\151\x6f\x6e\x73\56\143\x61\162\164\x2d\x72\165\154\145\x73\x2e\x65\144\151\164\x2e\147\145\156\x65\x72\141\x74\145\x27\x29\xa\x20\40\40\40\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\40\40\40\40\x20\x20\x20\40\x20\x20\x20\74\x2f\x62\165\x74\164\x6f\156\76\xa\40\x20\40\40\40\x20\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\40\x20\40\x20\x20\x20\74\57\146\x6f\x72\x6d\x3e\xa\x20\x20\40\x20\x20\40\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\40\74\x2f\x78\55\x61\144\x6d\x69\156\72\72\x66\x6f\x72\x6d\76\12\12\x20\x20\x20\40\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\x3c\41\x2d\x2d\x20\103\x6f\165\160\x6f\x6e\163\40\x45\170\x70\157\162\x74\x20\115\x6f\144\141\x6c\x20\x2d\55\x3e\12\x20\40\40\40\40\40\40\40\x20\40\40\40\x20\x20\40\40\40\40\x20\x20\x3c\x64\151\x76\x20\143\154\141\163\x73\75\x22\x66\154\x65\x78\x20\x6a\x75\163\x74\x69\146\x79\x2d\142\x65\x74\x77\x65\145\156\x20\x69\x74\x65\155\163\x2d\143\x65\156\164\145\x72\42\x3e\xa\x20\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\x20\x20\40\40\40\40\40\40\40\40\74\144\x69\x76\40\143\x6c\x61\163\163\x3d\x22\146\x6c\x65\x78\x20\147\x61\160\55\170\55\x32\56\x35\40\151\x74\145\x6d\163\55\143\145\x6e\x74\145\x72\42\x3e\xa\x20\x20\40\40\40\40\40\40\40\x20\x20\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\x20\40\40\x20\x20\74\160\40\143\x6c\x61\x73\x73\x3d\x22\164\145\170\x74\55\170\154\40\x74\145\170\x74\x2d\147\162\x61\x79\55\x38\x30\x30\40\x64\x61\x72\x6b\72\x74\x65\x78\x74\55\x77\150\x69\x74\145\x20\146\x6f\156\164\x2d\x62\157\x6c\144\x22\76\x3c\x2f\160\76\xa\x20\x20\40\x20\40\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\x20\40\x20\40\40\40\x3c\x2f\144\x69\166\76\xa\xa\x20\40\x20\x20\40\40\x20\x20\x20\x20\40\x20\40\x20\40\x20\x20\x20\40\40\40\40\x20\40\74\144\151\x76\76\x20\74\41\x2d\x2d\40\x45\155\x70\164\171\40\144\151\166\x20\164\157\40\x70\165\163\x68\40\143\157\x6e\x74\x65\x6e\164\x20\164\157\40\164\150\145\40\162\151\x67\x68\164\x20\x65\156\x64\x20\x2d\55\76\40\x3c\x2f\x64\151\166\76\12\12\40\40\40\40\40\40\40\x20\x20\40\40\x20\40\40\40\40\x20\40\40\40\40\x20\x20\x20\74\144\x69\166\40\x63\154\141\163\163\x3d\42\146\x6c\145\170\40\x67\x61\160\55\x78\55\62\56\x35\x20\x69\x74\x65\155\163\x2d\143\145\x6e\x74\x65\162\42\x3e\12\40\x20\40\x20\40\40\40\x20\40\x20\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\40\40\40\x20\x20\x3c\170\x2d\141\144\155\x69\156\x3a\x3a\x64\141\x74\141\x67\162\x69\x64\x2e\x65\x78\160\157\162\164\40\x73\x72\143\x3d\x22\x7b\x7b\40\162\x6f\165\x74\145\50\x27\141\x64\155\151\x6e\56\155\x61\162\153\x65\164\151\x6e\147\x2e\160\162\157\x6d\x6f\x74\x69\157\x6e\x73\56\x63\x61\x72\164\x5f\x72\165\154\x65\x73\x2e\x63\x6f\165\160\157\156\x73\x2e\x69\156\144\x65\x78\x27\54\x20\x24\143\x61\x72\x74\122\165\154\145\55\x3e\151\x64\51\x20\175\x7d\x22\x20\57\x3e\12\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\40\40\40\x20\40\x20\74\57\x64\x69\166\76\xa\x20\x20\x20\x20\x20\x20\x20\40\40\x20\40\x20\x20\x20\40\40\40\x20\40\40\74\57\x64\x69\166\x3e\xa\xa\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\40\40\40\x20\x20\40\40\x20\x20\74\41\55\x2d\x43\157\165\160\157\156\40\144\x61\164\x61\147\x72\151\144\x20\x2d\x2d\76\12\x20\40\40\40\40\x20\40\x20\40\x20\x20\40\40\x20\40\x20\40\x20\x20\40\74\170\x2d\x61\x64\x6d\151\156\72\x3a\144\141\x74\x61\x67\162\151\x64\x20\72\163\162\x63\75\x22\162\157\x75\164\x65\x28\47\141\x64\155\x69\156\56\x6d\x61\162\x6b\145\x74\x69\156\x67\x2e\x70\x72\157\155\x6f\164\x69\157\x6e\x73\x2e\143\x61\x72\164\137\x72\x75\x6c\x65\x73\56\x63\x6f\165\x70\157\156\163\x2e\151\156\144\145\170\x27\54\x20\44\x63\141\162\x74\x52\165\x6c\145\x2d\76\151\144\51\x22\x20\x2f\76\12\40\40\40\40\40\40\40\x20\40\40\x20\x20\x20\x20\x20\40\x3c\57\x64\151\x76\x3e\12\x20\x20\x20\x20\x20\40\x20\x20\x20\x20\40\x20\x3c\57\x64\151\x76\x3e\12\x20\x20\40\40\x20\40\x20\x20\74\x2f\163\x63\x72\151\160\164\x3e\xa\12\40\x20\x20\x20\x20\x20\x20\40\74\163\x63\162\x69\x70\x74\x20\x74\171\160\x65\x3d\42\x6d\x6f\144\165\154\145\x22\x3e\12\x20\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x61\x70\160\56\x63\x6f\x6d\x70\157\x6e\145\x6e\164\x28\47\x76\x2d\143\162\145\x61\164\145\x2d\143\x6f\x75\160\157\156\x2d\x66\x6f\x72\155\x27\54\x20\173\12\40\x20\40\x20\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x74\145\x6d\160\x6c\x61\164\x65\72\x20\47\43\166\55\143\162\x65\x61\164\145\55\143\157\165\160\x6f\156\x2d\146\x6f\162\155\x2d\x74\x65\155\x70\154\x61\164\145\x27\x2c\12\xa\40\40\x20\x20\40\40\40\40\x20\40\40\40\x20\40\x20\40\144\x61\x74\141\x28\51\40\x7b\xa\40\x20\x20\x20\40\40\40\x20\x20\40\40\40\x20\40\x20\40\40\x20\40\40\x72\145\x74\x75\162\x6e\x20\x7b\12\x20\40\40\40\40\x20\40\x20\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\x20\40\143\157\x75\160\157\x6e\137\x66\157\x72\155\x61\x74\x3a\40\x7b\12\x20\40\x20\40\40\40\40\x20\x20\x20\x20\40\40\40\40\40\40\40\x20\40\x20\x20\x20\x20\x20\40\40\40\143\x6f\x64\145\x5f\154\x65\156\x67\x74\x68\x3a\x20\x31\62\x2c\xa\xa\x20\x20\40\x20\40\40\x20\40\40\40\x20\40\40\x20\x20\x20\40\x20\40\40\x20\x20\40\x20\40\x20\x20\x20\143\157\x64\x65\137\146\157\x72\x6d\141\164\x3a\x20\x27\x61\x6c\160\x68\141\156\165\x6d\145\x72\x69\x63\47\54\12\xa\x20\x20\x20\40\x20\40\x20\x20\x20\40\40\x20\40\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\x20\x20\x20\40\143\x6f\x75\160\x6f\156\137\x71\x74\171\72\x20\47\x27\x2c\xa\xa\x20\x20\40\x20\40\40\40\x20\40\40\x20\40\40\x20\40\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\x20\x63\x6f\x64\x65\x5f\160\x72\145\146\x69\170\72\x20\47\x27\x2c\xa\12\x20\40\x20\40\40\40\x20\x20\x20\x20\40\x20\x20\40\x20\40\40\x20\x20\40\40\x20\40\x20\40\40\x20\40\143\157\144\x65\x5f\163\165\x66\146\151\x78\x3a\x20\x27\47\xa\x20\40\40\x20\40\40\x20\x20\x20\x20\40\40\40\x20\40\40\40\40\x20\40\x20\40\40\40\x7d\12\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\40\40\x20\40\x20\40\x20\x20\175\73\xa\40\40\x20\x20\40\40\40\40\40\x20\x20\40\x20\40\x20\x20\x7d\54\12\12\x20\x20\40\40\40\x20\40\x20\x20\x20\40\x20\40\x20\40\40\155\x65\164\x68\x6f\144\x73\x3a\x20\173\xa\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\x20\x20\x20\x20\40\40\40\x20\x73\164\157\162\x65\x28\160\x61\162\141\x6d\x73\54\40\x7b\x20\162\x65\x73\x65\x74\106\157\162\155\x2c\x20\x73\145\164\105\162\162\x6f\162\x73\x20\x7d\51\40\x7b\12\40\40\40\40\x20\40\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\x20\x20\40\x20\x20\164\150\x69\163\56\44\141\170\x69\157\163\x2e\160\x6f\x73\x74\50\47\173\173\x20\x72\x6f\165\164\x65\x28\47\x61\144\x6d\151\x6e\x2e\x6d\x61\162\x6b\145\x74\x69\x6e\x67\56\x70\x72\x6f\x6d\157\x74\x69\157\156\x73\x2e\x63\141\x72\164\137\162\x75\x6c\145\x73\56\143\157\x75\x70\x6f\156\x73\56\163\164\157\x72\x65\x27\x2c\40\44\143\x61\x72\x74\x52\165\x6c\x65\55\76\x69\144\51\x20\175\175\47\x2c\40\x70\x61\162\x61\155\163\51\12\40\x20\x20\x20\x20\40\x20\40\40\x20\40\x20\40\40\40\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\x20\x2e\x74\150\x65\156\x28\50\x72\145\x73\160\157\156\163\x65\x29\40\75\x3e\40\173\xa\x20\x20\x20\40\x20\40\x20\x20\x20\40\x20\x20\x20\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x20\x20\x20\40\x20\x20\x20\x77\151\156\x64\x6f\167\56\154\157\x63\x61\x74\151\x6f\156\x2e\x72\x65\x6c\157\x61\x64\x28\51\73\12\xa\x20\40\x20\x20\40\x20\40\40\40\40\x20\x20\x20\x20\x20\40\x20\40\40\x20\x20\40\40\x20\x20\40\40\40\40\40\x20\x20\x74\150\x69\x73\56\44\x65\155\x69\164\x74\x65\x72\56\x65\x6d\x69\164\50\47\x61\x64\144\x2d\x66\154\x61\163\x68\x27\x2c\x20\173\40\164\171\160\145\72\40\47\163\165\x63\x63\145\x73\163\47\x2c\40\x6d\x65\163\x73\141\147\145\x3a\40\x72\145\163\160\x6f\156\x73\145\56\x64\141\164\x61\56\x6d\145\163\163\x61\x67\x65\40\175\51\73\xa\xa\40\x20\x20\40\40\40\x20\40\x20\40\40\40\x20\40\40\40\x20\40\x20\x20\40\x20\x20\40\40\x20\40\40\40\x20\40\40\x72\x65\163\145\x74\x46\x6f\162\155\50\51\73\12\40\40\x20\40\40\x20\40\x20\x20\40\40\x20\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\40\40\40\40\175\x29\xa\x20\x20\40\40\x20\x20\x20\40\40\x20\x20\x20\x20\x20\40\x20\x20\40\x20\x20\x20\40\40\40\40\40\40\x20\x2e\143\x61\x74\143\x68\x28\50\145\x72\162\x6f\162\51\40\x3d\76\x20\x7b\12\x20\40\40\40\40\40\40\40\40\x20\40\40\40\x20\40\40\x20\x20\40\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x20\40\151\146\x20\x28\x65\x72\x72\x6f\x72\56\x72\145\163\160\x6f\x6e\x73\x65\56\x73\164\x61\164\165\163\40\75\75\x20\x34\62\62\51\40\173\xa\x20\40\x20\40\40\x20\40\40\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\40\x20\40\40\x20\x20\x20\x20\x20\40\40\x20\40\40\x20\x20\x73\145\x74\x45\x72\x72\157\x72\163\50\x65\162\x72\x6f\x72\56\x72\145\x73\160\x6f\x6e\163\x65\x2e\144\x61\x74\141\x2e\x65\162\x72\157\x72\163\51\x3b\12\40\40\40\40\x20\x20\x20\40\40\x20\40\x20\x20\x20\x20\40\40\40\x20\40\x20\40\x20\40\x20\x20\40\x20\x20\x20\x20\40\x7d\12\x20\40\x20\40\40\40\40\40\x20\40\x20\40\40\x20\40\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\40\x7d\x29\73\12\40\x20\x20\40\x20\x20\x20\40\x20\40\x20\x20\x20\x20\x20\x20\x20\x20\40\40\x7d\54\xa\40\x20\x20\40\x20\40\40\40\x20\40\40\40\40\40\x20\x20\x7d\54\12\x20\x20\40\40\x20\40\40\40\40\x20\x20\40\175\51\73\xa\x20\40\40\40\x20\x20\40\40\x3c\x2f\x73\143\162\x69\x70\164\76\12\x20\x20\x20\40\x40\x65\156\x64\x50\x75\x73\150\x4f\x6e\143\145\xa\x3c\x2f\x78\55\x61\x64\155\151\156\x3a\72\x6c\141\x79\157\165\x74\163\x3e\xa";

Function Calls

None

Variables

None

Stats

MD5 3d53f99146120b87eebc064c83a49d7f
Eval Count 0
Decode Time 345 ms