Alternate Date

Alternate Date機能は、指定した搭乗日の前後の日付(前後1・3・7日)を検索し、各搭乗日の最安旅程を1つ取得できる機能です。

  • 前後日程の運賃を一括取得。カレンダー形式表示で一目でわかる最安値の組み合わせ。

    Alternate Date機能は、指定した搭乗日の前後の日付を一括して検索し、該当日の最安運賃情報を取得できることから、カレンダー形式での最安運賃表示が可能になります。

    【利用例】

    ・指定日の前後3日間の最安運賃を表示させ、より安価な旅程の提案を行い、航空券の購入を促進する。

    本機能は、日付の組み合わせに対して最安の旅程および運賃を1つ返却します。
    指定方法によって、最大180日分の結果を取得することが可能です。

機能詳細

【注意事項】
Alternate Date機能を利用する場合は、以下の通りHTTPヘッダーを指定します。
<XML形式利用時>
X-XML-Booking-SWSCONFIG: SERVICE=BargainFinderMax_ADRQ, ACTION=BargainFinderMax_ADRQ
<JSON形式利用時>
HTTPメソッド:POST
X-XML-BOOKING-ENDPOINT:/v6.1.0/shop/altdates/flights?mode=live

【利用方法】
RequestType@Nameの値部分に AD1 / AD3 / AD7を設定します。
各設定のレスポンス返却数は以下の通りです。

・AD1:9オプション
・AD3:49オプション
・AD7:225オプション
(※AD7を利用する場合は、事前に申請が必要です。)

【レスポンスイメージ】
以下表のセル毎に最安値のオプションが表示されます。
(画像をクリックすると、拡大表示されます。)

(※1)・・・リクエストタグで、"AD3"を指定。レスポンスで指定日の前後3日(計7日間)が出力。
(※2)・・・リクエストタグで、"AD7"を指定。レスポンスで指定日の前後7日(計15日間)が出力。
AD1を指定した場合、9オプション(3x3)出力される。(表の赤実線枠内)
AD3を指定した場合、49オプション(7x7)出力される。(表の赤破線枠内)
AD7を指定した場合、225オプション(15x15)出力される。(表の青実線枠内)

ご利用例

  • <ポイント>

    往路・復路それぞれの前後1・3・7日間の最安値を検索します。

  • <出力例>
    往路:10/10 ±3日
    復路:10/20 ±3日

 選択<OriginDestinationInformation RPH="1">
    <DepartureDateTime>2021-10-10T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="TYO"/>
    <DestinationLocation LocationCode="SIN"/>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
    <DepartureDateTime>2021-10-20T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="SIN"/>
    <DestinationLocation LocationCode="TYO"/>
</OriginDestinationInformation>
・
・
・
<TPA_Extensions>
    <IntelliSellTransaction>
        <RequestType Name="AD3" />
    </IntelliSellTransaction>
</TPA_Extensions>
  • <ポイント>

    往路または復路の特定の日付を指定し、前後1 or 3 or 7日間の最安値を検索します。

  • <出力例>
    往路:10/1、10/5
    復路:10/20 ±3日

 選択<OriginDestinationInformation RPH="1">
    <DepartureDates>
        <Day Date="2022-10-01"/>
        <Day Date="2022-10-05"/>
    </DepartureDates>
    <OriginLocation LocationCode="TYO"/>
    <DestinationLocation LocationCode="SIN"/>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
    <DepartureDateTime>2022-10-20T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="SIN"/>
    <DestinationLocation LocationCode="TYO"/>
</OriginDestinationInformation>
・
・
・
<TPA_Extensions>
    <IntelliSellTransaction>
        <RequestType Name="AD3" />
    </IntelliSellTransaction>
</TPA_Extensions>
  • <ポイント>

    往路または復路の日付の範囲を指定し、前後1 or 3 or 7日間の最安値を検索します。

  • <出力例>
    往路:10/1 ~ 10/5
    復路:10/20 ±3日

 選択<OriginDestinationInformation RPH="1">
    <DepartureDates>
        <DaysRange FromDate="2022-10-01" ToDate="2022-10-05"/>
    </DepartureDates>
    <OriginLocation LocationCode="TYO"/>
    <DestinationLocation LocationCode="SIN"/>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
    <DepartureDateTime>2022-10-20T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="SIN"/>
    <DestinationLocation LocationCode="TYO"/>
</OriginDestinationInformation>
・
・
・
<TPA_Extensions>
    <IntelliSellTransaction>
        <RequestType Name="AD3" />
    </IntelliSellTransaction>
</TPA_Extensions>
  • <ポイント>

    往路または復路の日付の範囲+曜日を指定し、前後1 or 3 or 7日間の最安値を検索します。

    DepartureDates/DaysRange@WeekDaysは、日曜日(S)から土曜日(S)までの検索する曜日を入力します。検索除外曜日は、"_"を記載します。
    (例:日曜日と水曜日"S__W___")

  • <出力例>
    往路:10/1~10/10 日曜日と月曜日(SM_____)
    復路:10/15 ±3日

 選択<OriginDestinationInformation RPH="1">
    <DepartureDates>
        <DaysRange WeekDays="SM_____" FromDate="2022-10-01" ToDate="2022-10-10"/>
    </DepartureDates>
    <OriginLocation LocationCode="TYO"/>
    <DestinationLocation LocationCode="SIN"/>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
    <DepartureDateTime>2022-10-20T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="SIN"/>
    <DestinationLocation LocationCode="TYO"/>
</OriginDestinationInformation>
・
・
・
<TPA_Extensions>
    <IntelliSellTransaction>
        <RequestType Name="AD3" />
    </IntelliSellTransaction>
</TPA_Extensions>
  • <ポイント>

    往路出発日の範囲 + 復路の滞在日数を指定し、最安値を検索します。

  • <出力例>
    往路:10/1~10/5
    復路:滞在日数4日

 選択<OriginDestinationInformation RPH="1">
    <DepartureDates>
        <DaysRange FromDate="2022-10-01" ToDate="2022-10-05"/>
    </DepartureDates>
    <OriginLocation LocationCode="TYO"/>
    <DestinationLocation LocationCode="SIN"/>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
    <DepartureDates>
        <LengthOfStay Days="4"/>
    </DepartureDates>
    <OriginLocation LocationCode="SIN"/>
    <DestinationLocation LocationCode="TYO"/>
</OriginDestinationInformation>
・
・
・
<TPA_Extensions>
    <IntelliSellTransaction>
        <RequestType Name="AD3" />
    </IntelliSellTransaction>
</TPA_Extensions>
  • <ポイント>

    往路または復路の前後〇日を指定し、最安値を検索します。

  • <出力例>
    往路:10/1 ±2日
    復路:10/15 ±3日

 選択<OriginDestinationInformation RPH="1">
    <DepartureDateTime>2022-10-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="TYO"/>
    <DestinationLocation LocationCode="SIN"/>
    <TPA_Extensions>
        <DateFlexibility NbrOfDays="2"/>
    </TPA_Extensions>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
    <DepartureDateTime>2022-10-15T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="SIN"/>
    <DestinationLocation LocationCode="TYO"/>
    <TPA_Extensions>
        <DateFlexibility NbrOfDays="3"/>
    </TPA_Extensions>
</OriginDestinationInformation>
・
・
・
<TPA_Extensions>
    <IntelliSellTransaction>
        <RequestType Name="AD7" />
    </IntelliSellTransaction>
</TPA_Extensions>
  • <ポイント>

    往路または復路の前〇日、後〇日を指定し、最安値を検索します。

  • <出力例>
    往路:10/1から前1日、後2日
    復路:10/15から前2日、後3日

 選択<OriginDestinationInformation RPH="1">
    <DepartureDateTime>2022-10-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="TYO"/>
    <DestinationLocation LocationCode="SIN"/>
    <TPA_Extensions>
        <DateFlexibility Plus="2"Minus="1"/>
    </TPA_Extensions>
</OriginDestinationInformation>
<OriginDestinationInformation RPH="2">
    <DepartureDateTime>2022-10-15T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="SIN"/>
    <DestinationLocation LocationCode="TYO"/>
    <TPA_Extensions>
        <DateFlexibility Plus="3" Minus="2"/>
    </TPA_Extensions>
</OriginDestinationInformation>
・
・
・
<TPA_Extensions>
    <IntelliSellTransaction>
        <RequestType Name="AD7" />
    </IntelliSellTransaction>
</TPA_Extensions>

リクエスト・レスポンスサンプル

当該サンプルのレスポンスはGIR版となります。
OTA版をご希望の場合は、リクエスト内のResponseType(黄色ハイライト部分)を”OTA”と入力ください。
※JSON形式では、ResponseTypeはGIR版のみとなります。

 選択<OTA_AirLowFareSearchRQ xmlns="http://www.opentravel.org/OTA/2003/05" Version="X.X.X" ResponseType="GIR" ResponseVersion="X.X.X" AvailableFlightsOnly="true">
  <POS>
    <Source PseudoCityCode="8IC6">
      <RequestorID ID="1" Type="1">
        <CompanyName Code="TN"/>
      </RequestorID>
    </Source>
  </POS>
  <OriginDestinationInformation RPH="1">
    <DepartureDateTime>2022-06-01T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="TYO" />
    <DestinationLocation LocationCode="HNL" />
    <TPA_Extensions />
  </OriginDestinationInformation>
  <OriginDestinationInformation RPH="2">
    <DepartureDateTime>2022-06-10T11:00:00</DepartureDateTime>
    <OriginLocation LocationCode="HNL" />
    <DestinationLocation LocationCode="TYO" />
    <TPA_Extensions />
  </OriginDestinationInformation>
  <TravelPreferences ValidInterlineTicket="true">
    <TPA_Extensions>
      <XOFares Value="true" />
      <JumpCabinLogic Disabled="true" />
      <KeepSameCabin Enabled="true" />
      <ExcludeCallDirectCarriers Enabled="true" />
    </TPA_Extensions>
  </TravelPreferences>
  <TravelerInfoSummary>
    <SeatsRequested>1</SeatsRequested>
    <AirTravelerAvail>
      <PassengerTypeQuantity Code="ADT" Quantity="1" />
    </AirTravelerAvail>
    <PriceRequestInformation>
      <TPA_Extensions />
    </PriceRequestInformation>
  </TravelerInfoSummary>
  <TPA_Extensions>
    <IntelliSellTransaction>
      <RequestType Name="AD3" />
      <CompressResponse Value="false" />
    </IntelliSellTransaction>
  </TPA_Extensions>
</OTA_AirLowFareSearchRQ>
選択<GroupedItineraryResponse xmlns="http://webservices.sabre.com/wsdl/sabreXML1.0.00/shopping/GroupedItineraryResponse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" Version="X.X.X">
  <Message Severity="Info" Type="WORKERTHREAD" Code="TRANSACTIONID" Text="7036004996614229645" />
  <Message Severity="Info" Type="SERVER" Code="ASE032LPSCIL781.ATSE.CERT.ASCINT.SABRECIRRUS.COM" Text="27135" />
  <Message Severity="Info" Type="DRE" Code="RULEID" Text="20502" />
  <Message Severity="Info" Type="DEFAULT" Code="RULEID" Text="27962" />
  <Statistics Itineraries="200" />
  <ScheduleDesc ID="1" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4581" ElapsedTime="505">
    <Departure Airport="ICN" City="SEL" Country="KR" Time="21:05:00+09:00" Terminal="2" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:30:00-10:00" Terminal="2" />
    <Carrier Marketing="KE" MarketingFlightNumber="53" Operating="KE" OperatingFlightNumber="53">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="2" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="450">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="19:55:00+09:00" Terminal="2" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="08:25:00-10:00" Terminal="2" />
    <Carrier Marketing="HA" MarketingFlightNumber="822" Operating="HA" OperatingFlightNumber="822">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="3" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="174" ElapsedTime="60">
    <Departure Airport="HND" City="TYO" Country="JP" Time="19:10:00+09:00" Terminal="1" />
    <Arrival Airport="NGO" City="NGO" Country="JP" Time="20:10:00+09:00" Terminal="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="209" Operating="JL" OperatingFlightNumber="209" Alliances="OW ">
      <Equipment Code="773" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="4" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="510">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="15:55:00-10:00" Terminal="1" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="19:25:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="6401" Operating="HA" OperatingFlightNumber="457" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="5" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="440">
    <Departure Airport="HND" City="TYO" Country="JP" Time="21:55:00+09:00" Terminal="3" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:15:00-10:00" Terminal="2" />
    <Carrier Marketing="NH" MarketingFlightNumber="186" Operating="NH" OperatingFlightNumber="186">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="6" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="510">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="11:35:00-10:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="15:05:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="NH" MarketingFlightNumber="183" Operating="NH" OperatingFlightNumber="183">
      <Equipment Code="388" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="7" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4116" ElapsedTime="480">
    <Departure Airport="KIX" City="OSA" Country="JP" Time="20:45:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="09:45:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="6408" Operating="HA" OperatingFlightNumber="450" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="8" Frequency="S**W*F*" Stops="0" ETicketable="true" TotalMilesFlown="4019" ElapsedTime="475">
    <Departure Airport="HND" City="TYO" Country="JP" Time="23:55:00+09:00" Terminal="3" />
    <Arrival Airport="KOA" City="KOA" State="HI" Country="US" Time="12:50:00-10:00" />
    <Carrier Marketing="HA" MarketingFlightNumber="852" Operating="HA" OperatingFlightNumber="852">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="9" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="500">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="12:35:00-10:00" Terminal="2" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="15:55:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="73" Operating="JL" OperatingFlightNumber="73" Alliances="OW ">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="10" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="500">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="13:00:00-10:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="16:20:00+09:00" Terminal="2" DateAdjustment="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="783" Operating="JL" OperatingFlightNumber="783" Alliances="OW ">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="11" DotRating="8" Frequency="***W*F*" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="51">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="14:33:00-10:00" Terminal="1" />
    <Arrival Airport="KOA" City="KOA" State="HI" Country="US" Time="15:24:00-10:00" />
    <Carrier Marketing="HA" MarketingFlightNumber="338" Operating="HA" OperatingFlightNumber="338">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="12" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="455">
    <Departure Airport="HND" City="TYO" Country="JP" Time="20:15:00+09:00" Terminal="3" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="08:50:00-10:00" Terminal="2" />
    <Carrier Marketing="HA" MarketingFlightNumber="864" Operating="HA" OperatingFlightNumber="864">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="13" DotRating="9" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="50">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="11:57:00-10:00" Terminal="1" />
    <Arrival Airport="KOA" City="KOA" State="HI" Country="US" Time="12:47:00-10:00" />
    <Carrier Marketing="HA" MarketingFlightNumber="268" Operating="HA" OperatingFlightNumber="268">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="14" TrafficRestriction="G" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="787" ElapsedTime="150">
    <Departure Airport="ICN" City="SEL" Country="KR" Time="18:35:00+09:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="21:05:00+09:00" Terminal="1" />
    <Carrier Marketing="DL" MarketingFlightNumber="7672" Operating="KE" OperatingFlightNumber="705" Disclosure="KE">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="15" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="510" ElapsedTime="90">
    <Departure Airport="HND" City="TYO" Country="JP" Time="16:35:00+09:00" Terminal="1" />
    <Arrival Airport="CTS" City="SPK" Country="JP" Time="18:05:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="523" Operating="JL" OperatingFlightNumber="523" Alliances="OW ">
      <Equipment Code="359" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="16" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="500">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="16:10:00-10:00" Terminal="2" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="19:30:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="71" Operating="JL" OperatingFlightNumber="71" Alliances="OW ">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="17" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4581" ElapsedTime="490">
    <Departure Airport="ICN" City="SEL" Country="KR" Time="20:20:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="09:30:00-10:00" Terminal="2" />
    <Carrier Marketing="OZ" MarketingFlightNumber="232" Operating="OZ" OperatingFlightNumber="232">
      <Equipment Code="77L" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="18" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="212" ElapsedTime="80">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="18:30:00+09:00" Terminal="2" />
    <Arrival Airport="NGO" City="NGO" Country="JP" Time="19:50:00+09:00" Terminal="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="3087" Operating="JL" OperatingFlightNumber="3087" Alliances="OW ">
      <Equipment Code="73H" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="19" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="475">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="10:20:00-10:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="13:15:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="NH" MarketingFlightNumber="7025" Operating="UA" OperatingFlightNumber="903" Disclosure="UA">
      <Equipment Code="777" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="20" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="250" ElapsedTime="65">
    <Departure Airport="HND" City="TYO" Country="JP" Time="15:00:00+09:00" Terminal="1" />
    <Arrival Airport="ITM" City="OSA" Country="JP" Time="16:05:00+09:00" />
    <Carrier Marketing="JL" MarketingFlightNumber="125" Operating="JL" OperatingFlightNumber="125" Alliances="OW ">
      <Equipment Code="788" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="21" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="455">
    <Departure Airport="HND" City="TYO" Country="JP" Time="21:20:00+09:00" Terminal="3" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="09:55:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="6402" Operating="HA" OperatingFlightNumber="458" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="22" Frequency="S****F*" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="505">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="11:55:00-10:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="15:20:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="KE" MarketingFlightNumber="2" Operating="KE" OperatingFlightNumber="2">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="23" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="174" ElapsedTime="65">
    <Departure Airport="NGO" City="NGO" Country="JP" Time="20:55:00+09:00" Terminal="1" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="22:00:00+09:00" Terminal="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="208" Operating="JL" OperatingFlightNumber="208" Alliances="OW ">
      <Equipment Code="73H" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="24" Frequency="S*T**F*" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="515">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="12:40:00-10:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="16:15:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="NH" MarketingFlightNumber="181" Operating="NH" OperatingFlightNumber="181">
      <Equipment Code="388" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="25" Frequency="S*T*TFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="530">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="16:10:00-10:00" Terminal="2" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="20:00:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="DL" MarketingFlightNumber="181" Operating="DL" OperatingFlightNumber="181">
      <Equipment Code="76W" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="26" Frequency="S**W*F*" Stops="0" ETicketable="true" TotalMilesFlown="3751" ElapsedTime="445">
    <Departure Airport="CTS" City="SPK" Country="JP" Time="19:50:00+09:00" Terminal="I" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="08:15:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="6400" Operating="HA" OperatingFlightNumber="442" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="27" Frequency="SMTWTF*" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="475">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="10:20:00-10:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="13:15:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="UA" MarketingFlightNumber="903" Operating="UA" OperatingFlightNumber="903">
      <Equipment Code="777" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="28" Frequency="SMTWTF*" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="435">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="18:55:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="07:10:00-10:00" Terminal="2" />
    <Carrier Marketing="UA" MarketingFlightNumber="902" Operating="UA" OperatingFlightNumber="902">
      <Equipment Code="777" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="29" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="510" ElapsedTime="90">
    <Departure Airport="HND" City="TYO" Country="JP" Time="15:35:00+09:00" Terminal="1" />
    <Arrival Airport="CTS" City="SPK" Country="JP" Time="17:05:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="521" Operating="JL" OperatingFlightNumber="521" Alliances="OW ">
      <Equipment Code="359" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="30" Frequency="SM*W*FS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="465">
    <Departure Airport="HND" City="TYO" Country="JP" Time="21:55:00+09:00" Terminal="3" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:40:00-10:00" Terminal="2" />
    <Carrier Marketing="DL" MarketingFlightNumber="180" Operating="DL" OperatingFlightNumber="180">
      <Equipment Code="76W" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="31" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4581" ElapsedTime="605">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="12:40:00-10:00" Terminal="2" />
    <Arrival Airport="ICN" City="SEL" Country="KR" Time="17:45:00+09:00" Terminal="2" DateAdjustment="1" />
    <Carrier Marketing="DL" MarketingFlightNumber="7938" Operating="KE" OperatingFlightNumber="54" Disclosure="KE">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="32" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="450">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="19:55:00+09:00" Terminal="2" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="08:25:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="6406" Operating="HA" OperatingFlightNumber="822" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="33" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="440">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="20:10:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="08:30:00-10:00" Terminal="2" />
    <Carrier Marketing="NH" MarketingFlightNumber="184" Operating="NH" OperatingFlightNumber="184">
      <Equipment Code="388" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="34" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="440">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="20:10:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="08:30:00-10:00" Terminal="2" />
    <Carrier Marketing="UA" MarketingFlightNumber="8010" Operating="NH" OperatingFlightNumber="184" Disclosure="NH">
      <Equipment Code="388" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="35" DotRating="N" Frequency="S**WTFS" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="48">
    <Departure Airport="KOA" City="KOA" State="HI" Country="US" Time="15:03:00-10:00" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="15:51:00-10:00" Terminal="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="307" Operating="HA" OperatingFlightNumber="307">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="36" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="548" ElapsedTime="110">
    <Departure Airport="HND" City="TYO" Country="JP" Time="17:10:00+09:00" Terminal="1" />
    <Arrival Airport="FUK" City="FUK" Country="JP" Time="19:00:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="327" Operating="JL" OperatingFlightNumber="327" Alliances="OW ">
      <Equipment Code="359" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="37" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="787" ElapsedTime="150">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="13:20:00+09:00" Terminal="1" />
    <Arrival Airport="ICN" City="SEL" Country="KR" Time="15:50:00+09:00" Terminal="1" />
    <Carrier Marketing="OZ" MarketingFlightNumber="101" Operating="OZ" OperatingFlightNumber="101">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="38" DotRating="9" Frequency="***W*F*" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="49">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="15:15:00-10:00" Terminal="1" />
    <Arrival Airport="KOA" City="KOA" State="HI" Country="US" Time="16:04:00-10:00" />
    <Carrier Marketing="HA" MarketingFlightNumber="358" Operating="HA" OperatingFlightNumber="358">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="39" DotRating="N" Frequency="SM**TFS" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="52">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="13:41:00-10:00" Terminal="1" />
    <Arrival Airport="KOA" City="KOA" State="HI" Country="US" Time="14:33:00-10:00" />
    <Carrier Marketing="HA" MarketingFlightNumber="318" Operating="HA" OperatingFlightNumber="318">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="40" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="515">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="12:25:00-10:00" Terminal="1" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="16:00:00+09:00" Terminal="2" DateAdjustment="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="6405" Operating="HA" OperatingFlightNumber="821" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="41" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="510" ElapsedTime="90">
    <Departure Airport="HND" City="TYO" Country="JP" Time="14:35:00+09:00" Terminal="1" />
    <Arrival Airport="CTS" City="SPK" Country="JP" Time="16:05:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="519" Operating="JL" OperatingFlightNumber="519" Alliances="OW ">
      <Equipment Code="359" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="42" TrafficRestriction="G" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="787" ElapsedTime="160">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="17:20:00+09:00" Terminal="1" />
    <Arrival Airport="ICN" City="SEL" Country="KR" Time="20:00:00+09:00" Terminal="2" />
    <Carrier Marketing="DL" MarketingFlightNumber="9049" Operating="KE" OperatingFlightNumber="2" Disclosure="KE">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="43" DotRating="9" Frequency="SMTWTF*" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="48">
    <Departure Airport="KOA" City="KOA" State="HI" Country="US" Time="16:34:00-10:00" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="17:22:00-10:00" Terminal="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="347" Operating="HA" OperatingFlightNumber="347">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="44" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4116" ElapsedTime="560">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="14:25:00-10:00" Terminal="1" />
    <Arrival Airport="KIX" City="OSA" Country="JP" Time="18:45:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="6407" Operating="HA" OperatingFlightNumber="449" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="45" TrafficRestriction="F" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="460">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="21:20:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:00:00-10:00" Terminal="2" />
    <Carrier Marketing="DL" MarketingFlightNumber="9030" Operating="KE" OperatingFlightNumber="1" Disclosure="KE">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="46" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="510">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="11:35:00-10:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="15:05:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="UA" MarketingFlightNumber="8011" Operating="NH" OperatingFlightNumber="183" Disclosure="NH">
      <Equipment Code="388" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="47" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="460">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="20:40:00+09:00" Terminal="2" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="09:20:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="784" Operating="JL" OperatingFlightNumber="784" Alliances="OW ">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="48" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4024" ElapsedTime="520">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="14:10:00-10:00" Terminal="2" />
    <Arrival Airport="NGO" City="NGO" Country="JP" Time="17:50:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="793" Operating="JL" OperatingFlightNumber="793" Alliances="OW ">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="49" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="475">
    <Departure Airport="HND" City="TYO" Country="JP" Time="21:55:00+09:00" Terminal="3" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:50:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="72" Operating="JL" OperatingFlightNumber="72" Alliances="OW ">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="50" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4581" ElapsedTime="505">
    <Departure Airport="ICN" City="SEL" Country="KR" Time="21:05:00+09:00" Terminal="2" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:30:00-10:00" Terminal="2" />
    <Carrier Marketing="DL" MarketingFlightNumber="7939" Operating="KE" OperatingFlightNumber="53" Disclosure="KE">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="51" DotRating="N" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="47">
    <Departure Airport="KOA" City="KOA" State="HI" Country="US" Time="18:26:00-10:00" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="19:13:00-10:00" Terminal="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="397" Operating="HA" OperatingFlightNumber="397">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="52" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="460">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="21:20:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:00:00-10:00" Terminal="2" />
    <Carrier Marketing="KE" MarketingFlightNumber="1" Operating="KE" OperatingFlightNumber="1">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="53" Frequency="S*T**F*" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="515">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="12:40:00-10:00" Terminal="2" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="16:15:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="UA" MarketingFlightNumber="7981" Operating="NH" OperatingFlightNumber="181" Disclosure="NH">
      <Equipment Code="388" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="54" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="510">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="13:40:00-10:00" Terminal="1" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="17:10:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="863" Operating="HA" OperatingFlightNumber="863">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="55" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="455">
    <Departure Airport="HND" City="TYO" Country="JP" Time="21:20:00+09:00" Terminal="3" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="09:55:00-10:00" Terminal="2" />
    <Carrier Marketing="HA" MarketingFlightNumber="458" Operating="HA" OperatingFlightNumber="458">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="56" TrafficRestriction="Q" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="585" ElapsedTime="135">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="15:35:00+09:00" Terminal="3" />
    <Arrival Airport="FUK" City="FUK" Country="JP" Time="17:50:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="6055" Operating="GK" Disclosure="GK">
      <Equipment Code="320" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="57" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="515">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="13:50:00-10:00" Terminal="2" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="17:25:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="NH" MarketingFlightNumber="185" Operating="NH" OperatingFlightNumber="185">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="58" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="510">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="13:40:00-10:00" Terminal="1" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="17:10:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="6415" Operating="HA" OperatingFlightNumber="863" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="59" Frequency="S**W*F*" Stops="0" ETicketable="true" TotalMilesFlown="4019" ElapsedTime="525">
    <Departure Airport="KOA" City="KOA" State="HI" Country="US" Time="18:15:00-10:00" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="22:00:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="851" Operating="HA" OperatingFlightNumber="851">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="60" Frequency="**TW***" Stops="0" ETicketable="true" TotalMilesFlown="787" ElapsedTime="160">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="17:20:00+09:00" Terminal="1" />
    <Arrival Airport="ICN" City="SEL" Country="KR" Time="20:00:00+09:00" Terminal="2" />
    <Carrier Marketing="KE" MarketingFlightNumber="2" Operating="KE" OperatingFlightNumber="2">
      <Equipment Code="333" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="61" Frequency="*M*WT*S" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="440">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="21:30:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="09:50:00-10:00" Terminal="2" />
    <Carrier Marketing="NH" MarketingFlightNumber="182" Operating="NH" OperatingFlightNumber="182">
      <Equipment Code="77W" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="62" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4581" ElapsedTime="680">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="11:10:00-10:00" Terminal="2" />
    <Arrival Airport="ICN" City="SEL" Country="KR" Time="17:30:00+09:00" Terminal="1" DateAdjustment="1" />
    <Carrier Marketing="OZ" MarketingFlightNumber="231" Operating="OZ" OperatingFlightNumber="231">
      <Equipment Code="77L" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="63" Frequency="SM*W**S" Stops="0" ETicketable="true" TotalMilesFlown="4396" ElapsedTime="515">
    <Departure Airport="FUK" City="FUK" Country="JP" Time="20:40:00+09:00" Terminal="I" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:15:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="6414" Operating="HA" OperatingFlightNumber="828" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="64" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="435">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="18:55:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="07:10:00-10:00" Terminal="2" />
    <Carrier Marketing="NH" MarketingFlightNumber="7024" Operating="UA" OperatingFlightNumber="902" Disclosure="UA">
      <Equipment Code="777" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="65" Frequency="*M*WT*S" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="440">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="21:30:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="09:50:00-10:00" Terminal="2" />
    <Carrier Marketing="UA" MarketingFlightNumber="7940" Operating="NH" OperatingFlightNumber="182" Disclosure="NH">
      <Equipment Code="77W" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="66" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="510">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="15:55:00-10:00" Terminal="1" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="19:25:00+09:00" Terminal="3" DateAdjustment="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="457" Operating="HA" OperatingFlightNumber="457">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="67" TrafficRestriction="Q" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="490" ElapsedTime="115">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="14:20:00+09:00" Terminal="3" />
    <Arrival Airport="CTS" City="SPK" Country="JP" Time="16:15:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="6023" Operating="GK" Disclosure="GK">
      <Equipment Code="320" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="68" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="475">
    <Departure Airport="HND" City="TYO" Country="JP" Time="21:00:00+09:00" Terminal="3" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="09:55:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="74" Operating="JL" OperatingFlightNumber="74" Alliances="OW ">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="69" DotRating="N" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="48">
    <Departure Airport="KOA" City="KOA" State="HI" Country="US" Time="17:20:00-10:00" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="18:08:00-10:00" Terminal="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="367" Operating="HA" OperatingFlightNumber="367">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="70" DotRating="9" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="48">
    <Departure Airport="KOA" City="KOA" State="HI" Country="US" Time="15:54:00-10:00" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="16:42:00-10:00" Terminal="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="327" Operating="HA" OperatingFlightNumber="327">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="71" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3854" ElapsedTime="455">
    <Departure Airport="HND" City="TYO" Country="JP" Time="20:15:00+09:00" Terminal="3" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="08:50:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="6410" Operating="HA" OperatingFlightNumber="864" Disclosure="HA">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="72" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="4024" ElapsedTime="480">
    <Departure Airport="NGO" City="NGO" Country="JP" Time="21:20:00+09:00" Terminal="1" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="10:20:00-10:00" Terminal="2" />
    <Carrier Marketing="JL" MarketingFlightNumber="794" Operating="JL" OperatingFlightNumber="794" Alliances="OW ">
      <Equipment Code="789" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="73" TrafficRestriction="Q" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="585" ElapsedTime="130">
    <Departure Airport="NRT" City="TYO" Country="JP" Time="16:30:00+09:00" Terminal="3" />
    <Arrival Airport="FUK" City="FUK" Country="JP" Time="18:40:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="6059" Operating="GK" Disclosure="GK">
      <Equipment Code="320" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="74" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="268" ElapsedTime="75">
    <Departure Airport="KIX" City="OSA" Country="JP" Time="21:10:00+09:00" Terminal="1" />
    <Arrival Airport="HND" City="TYO" Country="JP" Time="22:25:00+09:00" Terminal="1" />
    <Carrier Marketing="JL" MarketingFlightNumber="228" Operating="JL" OperatingFlightNumber="228" Alliances="OW ">
      <Equipment Code="73H" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="75" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="3818" ElapsedTime="515">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="12:25:00-10:00" Terminal="1" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="16:00:00+09:00" Terminal="2" DateAdjustment="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="821" Operating="HA" OperatingFlightNumber="821">
      <Equipment Code="332" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="76" DotRating="9" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="50">
    <Departure Airport="KOA" City="KOA" State="HI" Country="US" Time="14:37:00-10:00" />
    <Arrival Airport="HNL" City="HNL" State="HI" Country="US" Time="15:27:00-10:00" Terminal="1" />
    <Carrier Marketing="HA" MarketingFlightNumber="297" Operating="HA" OperatingFlightNumber="297">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="77" DotRating="N" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="169" ElapsedTime="50">
    <Departure Airport="HNL" City="HNL" State="HI" Country="US" Time="16:00:00-10:00" Terminal="1" />
    <Arrival Airport="KOA" City="KOA" State="HI" Country="US" Time="16:50:00-10:00" />
    <Carrier Marketing="HA" MarketingFlightNumber="378" Operating="HA" OperatingFlightNumber="378">
      <Equipment Code="717" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="78" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="548" ElapsedTime="110">
    <Departure Airport="HND" City="TYO" Country="JP" Time="16:00:00+09:00" Terminal="1" />
    <Arrival Airport="FUK" City="FUK" Country="JP" Time="17:50:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="325" Operating="JL" OperatingFlightNumber="325" Alliances="OW ">
      <Equipment Code="359" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="79" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="510" ElapsedTime="95">
    <Departure Airport="HND" City="TYO" Country="JP" Time="13:35:00+09:00" Terminal="1" />
    <Arrival Airport="CTS" City="SPK" Country="JP" Time="15:10:00+09:00" Terminal="D" />
    <Carrier Marketing="JL" MarketingFlightNumber="517" Operating="JL" OperatingFlightNumber="517" Alliances="OW ">
      <Equipment Code="772" TypeForFirstLeg="W" TypeForLastLeg="W" />
    </Carrier>
  </ScheduleDesc>
  <ScheduleDesc ID="80" Frequency="SMTWTFS" Stops="0" ETicketable="true" TotalMilesFlown="787" ElapsedTime="140">
    <Departure Airport="ICN" City="SEL" Country="KR" Time="18:50:00+09:00" Terminal="1" />
    <Arrival Airport="NRT" City="TYO" Country="JP" Time="21:10:00+09:00" Terminal="1" />
    <Carrier Marketing="OZ" MarketingFlightNumber="108" Operating="OZ" OperatingFlightNumber="108">
      <Equipment Code="321" TypeForFirstLeg="N" TypeForLastLeg="N" />
    </Carrier>
  </ScheduleDesc>
  <TaxDesc ID="1" Code="YQI" Amount="110" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="0.90" PublishedCurrency="USD" Station="HNL" />
  <TaxDesc ID="2" Code="HJ2" Amount="440" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="440" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxDesc ID="3" Code="YQF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="NRT" />
  <TaxDesc ID="4" Code="YRI" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="6600" PublishedCurrency="JPY" Station="HND" />
  <TaxDesc ID="5" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="ICN" Country="US" />
  <TaxDesc ID="6" Code="AY" Amount="640" Currency="JPY" Description="PASSENGER CIVIL AVIATION SECURITY SERVICE FEE" PublishedAmount="5.60" PublishedCurrency="USD" Station="KOA" Country="US" />
  <TaxDesc ID="7" Code="XF" Amount="520" Currency="JPY" Description="PASSENGER FACILITY CHARGE" PublishedAmount="4.50" PublishedCurrency="USD" Station="KOA" Country="US" />
  <TaxDesc ID="8" Code="YQF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="NGO" />
  <TaxDesc ID="9" Code="YQI" Amount="300" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="300" PublishedCurrency="JPY" Station="NGO" />
  <TaxDesc ID="10" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="NRT" Country="US" />
  <TaxDesc ID="11" Code="XY2" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="HND" Country="US" />
  <TaxDesc ID="12" Code="OI" Amount="320" Currency="JPY" Description="PASSENGER SECURITY SERVICE CHARGE" PublishedAmount="320" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxDesc ID="13" Code="YQF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="HNL" />
  <TaxDesc ID="14" Code="YQF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="CTS" />
  <TaxDesc ID="15" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="HND" Country="US" />
  <TaxDesc ID="16" Code="HJ2" Amount="440" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="440" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxDesc ID="17" Code="SW" Amount="2610" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2610" PublishedCurrency="JPY" Station="CTS" Country="JP" />
  <TaxDesc ID="18" Code="HJ2" Amount="290" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="290" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxDesc ID="19" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="CTS" Country="JP" />
  <TaxDesc ID="20" Code="YQI" Amount="110" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="0.90" PublishedCurrency="USD" Station="NRT" />
  <TaxDesc ID="21" Code="YQF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="FUK" />
  <TaxDesc ID="22" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="NGO" Country="US" />
  <TaxDesc ID="23" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="CTS" Country="US" />
  <TaxDesc ID="24" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="FUK" Country="US" />
  <TaxDesc ID="25" Code="HJ" Amount="390" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="390" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxDesc ID="26" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="CTS" Country="US" />
  <TaxDesc ID="27" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="FUK" Country="JP" />
  <TaxDesc ID="28" Code="YRI" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="6600" PublishedCurrency="JPY" Station="ICN" />
  <TaxDesc ID="29" Code="XY2" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="KIX" Country="US" />
  <TaxDesc ID="30" Code="BP" Amount="950" Currency="JPY" Description="INTERNATIONAL PSC DEPARTURE TAX AND GLOBAL DISEASE ERADICATION FUND" PublishedAmount="10000" PublishedCurrency="KRW" Station="ICN" Country="KR" />
  <TaxDesc ID="31" Code="OI" Amount="530" Currency="JPY" Description="PASSENGER SECURITY SERVICE CHARGE" PublishedAmount="530" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxDesc ID="32" Code="HJ" Amount="440" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="440" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxDesc ID="33" Code="SW" Amount="980" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="980" PublishedCurrency="JPY" Station="FUK" Country="JP" />
  <TaxDesc ID="34" Code="YQI" Amount="300" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="300" PublishedCurrency="JPY" Station="CTS" />
  <TaxDesc ID="35" Code="XF" Amount="520" Currency="JPY" Description="PASSENGER FACILITY CHARGE" PublishedAmount="4.50" PublishedCurrency="USD" Station="HNL" Country="US" />
  <TaxDesc ID="36" Code="XY2" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="ICN" Country="US" />
  <TaxDesc ID="37" Code="YQF" Amount="800" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="800" PublishedCurrency="JPY" Station="ICN" />
  <TaxDesc ID="38" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="FUK" Country="US" />
  <TaxDesc ID="39" Code="HJ2" Amount="260" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="260" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxDesc ID="40" Code="YQF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="KOA" />
  <TaxDesc ID="41" Code="HJ2" Amount="110" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="110" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxDesc ID="42" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="NGO" Country="US" />
  <TaxDesc ID="43" Code="YQI" Amount="300" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="300" PublishedCurrency="JPY" Station="KIX" />
  <TaxDesc ID="44" Code="SW" Amount="2130" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2130" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxDesc ID="45" Code="XY2" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="NRT" Country="US" />
  <TaxDesc ID="46" Code="YRF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="NRT" />
  <TaxDesc ID="47" Code="YQI" Amount="300" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="300" PublishedCurrency="JPY" Station="FUK" />
  <TaxDesc ID="48" Code="US2" Amount="2170" Currency="JPY" Description="TRANSPORTATION TAX INTERNATIONAL ARRIVAL" PublishedAmount="19.10" PublishedCurrency="USD" Station="NRT" Country="US" />
  <TaxDesc ID="49" Code="YRI" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="6600" PublishedCurrency="JPY" Station="NRT" />
  <TaxDesc ID="50" Code="HJ2" Amount="270" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="270" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxDesc ID="51" Code="YQI" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="6600" PublishedCurrency="JPY" Station="NRT" />
  <TaxDesc ID="52" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="HND" Country="US" />
  <TaxDesc ID="53" Code="YQI" Amount="300" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="300" PublishedCurrency="JPY" Station="NRT" />
  <TaxDesc ID="54" Code="HJ2" Amount="270" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="270" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxDesc ID="55" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="KIX" Country="US" />
  <TaxDesc ID="56" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxDesc ID="57" Code="HJ" Amount="450" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="450" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxDesc ID="58" Code="SW" Amount="2610" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2610" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxDesc ID="59" Code="YQF" Amount="6200" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6200" PublishedCurrency="JPY" Station="HNL" />
  <TaxDesc ID="60" Code="XY2" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="CTS" Country="US" />
  <TaxDesc ID="61" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxDesc ID="62" Code="US2" Amount="2170" Currency="JPY" Description="TRANSPORTATION TAX INTERNATIONAL DEPARTURE INCLUDING AK AND HI" PublishedAmount="19.10" PublishedCurrency="USD" Station="HNL" Country="US" />
  <TaxDesc ID="63" Code="AY" Amount="640" Currency="JPY" Description="PASSENGER CIVIL AVIATION SECURITY SERVICE FEE" PublishedAmount="5.60" PublishedCurrency="USD" Station="HNL" Country="US" />
  <TaxDesc ID="64" Code="YQI" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="6600" PublishedCurrency="JPY" Station="HNL" />
  <TaxDesc ID="65" Code="HJ" Amount="290" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="290" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxDesc ID="66" Code="US2" Amount="2170" Currency="JPY" Description="TRANSPORTATION TAX INTERNATIONAL ARRIVAL" PublishedAmount="19.10" PublishedCurrency="USD" Station="HND" Country="US" />
  <TaxDesc ID="67" Code="YQI" Amount="300" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="300" PublishedCurrency="JPY" Station="HNL" />
  <TaxDesc ID="68" Code="YRI" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="6600" PublishedCurrency="JPY" Station="HNL" />
  <TaxDesc ID="69" Code="YQI" Amount="300" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="300" PublishedCurrency="JPY" Station="HND" />
  <TaxDesc ID="70" Code="HJ" Amount="440" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="440" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxDesc ID="71" Code="SW" Amount="2780" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2780" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxDesc ID="72" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxDesc ID="73" Code="YRF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="HNL" />
  <TaxDesc ID="74" Code="YQI" Amount="120" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="120" PublishedCurrency="JPY" Station="HNL" />
  <TaxDesc ID="75" Code="SW" Amount="2620" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2620" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxDesc ID="76" Code="XY2" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="FUK" Country="US" />
  <TaxDesc ID="77" Code="YQI" Amount="110" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="0.90" PublishedCurrency="USD" Station="ICN" />
  <TaxDesc ID="78" Code="HJ2" Amount="110" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="110" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxDesc ID="79" Code="YQI" Amount="120" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="120" PublishedCurrency="JPY" Station="ICN" />
  <TaxDesc ID="80" Code="YQF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="HND" />
  <TaxDesc ID="81" Code="YQF" Amount="800" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="800" PublishedCurrency="JPY" Station="NRT" />
  <TaxDesc ID="82" Code="XY2" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="NGO" Country="US" />
  <TaxDesc ID="83" Code="YQI" Amount="120" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED MISC" PublishedAmount="120" PublishedCurrency="JPY" Station="NRT" />
  <TaxDesc ID="84" Code="HJ2" Amount="290" Currency="JPY" Description="PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS" PublishedAmount="290" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxDesc ID="85" Code="YQF" Amount="6600" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6600" PublishedCurrency="JPY" Station="KIX" />
  <TaxDesc ID="86" Code="OI" Amount="350" Currency="JPY" Description="PASSENGER SECURITY SERVICE CHARGE" PublishedAmount="350" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxDesc ID="87" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxDesc ID="88" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="KIX" Country="US" />
  <TaxDesc ID="89" Code="YQF" Amount="6200" Currency="JPY" Description="SERVICE FEE - CARRIER-IMPOSED FUEL" PublishedAmount="6200" PublishedCurrency="JPY" Station="ICN" />
  <TaxDesc ID="90" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="ICN" Country="US" />
  <TaxDesc ID="91" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="NRT" Country="US" />
  <TaxSummaryDesc ID="1" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="ICN" Country="US" />
  <TaxSummaryDesc ID="2" Code="HJ" Amount="730" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="440" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxSummaryDesc ID="3" Code="HJ" Amount="550" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="290" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxSummaryDesc ID="4" Code="YQ" Amount="13800" Currency="JPY" Description="YQ taxes summary" />
  <TaxSummaryDesc ID="5" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="NRT" Country="US" />
  <TaxSummaryDesc ID="6" Code="HJ" Amount="1460" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="290" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxSummaryDesc ID="7" Code="OI" Amount="320" Currency="JPY" Description="PASSENGER SECURITY SERVICE CHARGE" PublishedAmount="320" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxSummaryDesc ID="8" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="HND" Country="US" />
  <TaxSummaryDesc ID="9" Code="HJ" Amount="560" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="290" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxSummaryDesc ID="10" Code="SW" Amount="2610" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2610" PublishedCurrency="JPY" Station="CTS" Country="JP" />
  <TaxSummaryDesc ID="11" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="CTS" Country="JP" />
  <TaxSummaryDesc ID="12" Code="YR" Amount="13200" Currency="JPY" Description="YR taxes summary" />
  <TaxSummaryDesc ID="13" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="NGO" Country="US" />
  <TaxSummaryDesc ID="14" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="CTS" Country="US" />
  <TaxSummaryDesc ID="15" Code="XY" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="HND" Country="US" />
  <TaxSummaryDesc ID="16" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="FUK" Country="US" />
  <TaxSummaryDesc ID="17" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="CTS" Country="US" />
  <TaxSummaryDesc ID="18" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="FUK" Country="JP" />
  <TaxSummaryDesc ID="19" Code="BP" Amount="950" Currency="JPY" Description="INTERNATIONAL PSC DEPARTURE TAX AND GLOBAL DISEASE ERADICATION FUND" PublishedAmount="10000" PublishedCurrency="KRW" Station="ICN" Country="KR" />
  <TaxSummaryDesc ID="20" Code="OI" Amount="530" Currency="JPY" Description="PASSENGER SECURITY SERVICE CHARGE" PublishedAmount="530" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxSummaryDesc ID="21" Code="SW" Amount="980" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="980" PublishedCurrency="JPY" Station="FUK" Country="JP" />
  <TaxSummaryDesc ID="22" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="FUK" Country="US" />
  <TaxSummaryDesc ID="23" Code="XY" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="KIX" Country="US" />
  <TaxSummaryDesc ID="24" Code="XY" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="ICN" Country="US" />
  <TaxSummaryDesc ID="25" Code="HJ" Amount="890" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="450" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxSummaryDesc ID="26" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="NGO" Country="US" />
  <TaxSummaryDesc ID="27" Code="YQ" Amount="330" Currency="JPY" Description="YQ taxes summary" />
  <TaxSummaryDesc ID="28" Code="SW" Amount="2130" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2130" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxSummaryDesc ID="29" Code="HJ" Amount="400" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="290" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxSummaryDesc ID="30" Code="HJ" Amount="730" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="440" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxSummaryDesc ID="31" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="HND" Country="US" />
  <TaxSummaryDesc ID="32" Code="HJ" Amount="1390" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="390" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxSummaryDesc ID="33" Code="XY" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="NRT" Country="US" />
  <TaxSummaryDesc ID="34" Code="YC" Amount="700" Currency="JPY" Description="CUSTOMS USER FEE" PublishedAmount="6.11" PublishedCurrency="USD" Station="KIX" Country="US" />
  <TaxSummaryDesc ID="35" Code="BP" Amount="1900" Currency="JPY" Description="INTERNATIONAL PSC DEPARTURE TAX AND GLOBAL DISEASE ERADICATION FUND" PublishedAmount="10000" PublishedCurrency="KRW" Station="ICN" Country="KR" />
  <TaxSummaryDesc ID="36" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxSummaryDesc ID="37" Code="YQ" Amount="13500" Currency="JPY" Description="YQ taxes summary" />
  <TaxSummaryDesc ID="38" Code="SW" Amount="2610" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2610" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxSummaryDesc ID="39" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxSummaryDesc ID="40" Code="AY" Amount="1280" Currency="JPY" Description="PASSENGER CIVIL AVIATION SECURITY SERVICE FEE" PublishedAmount="5.60" PublishedCurrency="USD" Station="KOA" Country="US" />
  <TaxSummaryDesc ID="41" Code="YQ" Amount="220" Currency="JPY" Description="YQ taxes summary" />
  <TaxSummaryDesc ID="42" Code="AY" Amount="640" Currency="JPY" Description="PASSENGER CIVIL AVIATION SECURITY SERVICE FEE" PublishedAmount="5.60" PublishedCurrency="USD" Station="HNL" Country="US" />
  <TaxSummaryDesc ID="43" Code="XY" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="FUK" Country="US" />
  <TaxSummaryDesc ID="44" Code="HJ" Amount="730" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="290" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxSummaryDesc ID="45" Code="SW" Amount="2780" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2780" PublishedCurrency="JPY" Station="KIX" Country="JP" />
  <TaxSummaryDesc ID="46" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxSummaryDesc ID="47" Code="XY" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="NGO" Country="US" />
  <TaxSummaryDesc ID="48" Code="HJ" Amount="1290" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="290" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxSummaryDesc ID="49" Code="HJ" Amount="660" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="390" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxSummaryDesc ID="50" Code="SW" Amount="2620" Currency="JPY" Description="PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL" PublishedAmount="2620" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxSummaryDesc ID="51" Code="HJ" Amount="500" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="390" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxSummaryDesc ID="52" Code="YQ" Amount="13200" Currency="JPY" Description="YQ taxes summary" />
  <TaxSummaryDesc ID="53" Code="US2" Amount="4340" Currency="JPY" Description="TRANSPORTATION TAX INTERNATIONAL DEPARTURE INCLUDING AK AND HI" PublishedAmount="19.10" PublishedCurrency="USD" Station="HNL" Country="US" />
  <TaxSummaryDesc ID="54" Code="YQ" Amount="14480" Currency="JPY" Description="YQ taxes summary" />
  <TaxSummaryDesc ID="55" Code="XF" Amount="520" Currency="JPY" Description="PASSENGER FACILITY CHARGE" PublishedAmount="4.50" PublishedCurrency="USD" Country="US" />
  <TaxSummaryDesc ID="56" Code="OI" Amount="350" Currency="JPY" Description="PASSENGER SECURITY SERVICE CHARGE" PublishedAmount="350" PublishedCurrency="JPY" Station="NGO" Country="JP" />
  <TaxSummaryDesc ID="57" Code="TK" Amount="1000" Currency="JPY" Description="INTERNATIONAL TOURIST TAX" PublishedAmount="1000" PublishedCurrency="JPY" Station="HND" Country="JP" />
  <TaxSummaryDesc ID="58" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="KIX" Country="US" />
  <TaxSummaryDesc ID="59" Code="HJ" Amount="1620" Currency="JPY" Description="PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES" PublishedAmount="450" PublishedCurrency="JPY" Station="NRT" Country="JP" />
  <TaxSummaryDesc ID="60" Code="XY" Amount="800" Currency="JPY" Description="IMMIGRATION USER FEE" PublishedAmount="7.00" PublishedCurrency="USD" Station="CTS" Country="US" />
  <TaxSummaryDesc ID="61" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="ICN" Country="US" />
  <TaxSummaryDesc ID="62" Code="XA" Amount="450" Currency="JPY" Description="APHIS PASSENGER FEE PASSENGERS" PublishedAmount="3.96" PublishedCurrency="USD" Station="NRT" Country="US" />
  <FareComponentDesc ID="1" GoverningCarrier="HA" FareAmount="80000" FareCurrency="JPY" FareBasisCode="HLXIRDMJ" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 2 3 4 5 6 7 8 10 12 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="JM00" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="2" GoverningCarrier="OZ" FareAmount="56000" FareCurrency="JPY" FareBasisCode="WLAJU7" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="3 4 5 7 8 9 10 12 16 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="JU70" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="3" GoverningCarrier="UA" FareAmount="85000" FareCurrency="JPY" FareBasisCode="LLWNNIBI" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="ERU" FareTariff="3" FareRule="JE87" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="4" GoverningCarrier="DL" FareAmount="85000" FareCurrency="JPY" FareBasisCode="TLO0ZGBD" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="ERU" FareTariff="3" FareRule="4BTN" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="5" GoverningCarrier="JL" FareAmount="81000" FareCurrency="JPY" FareBasisCode="SNN72DCE" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment Stopover="true">
      <Surcharge Amount="31.45" Currency="NUC" Description="MISCELLANEOUS/OTHER" Type="Q" />
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ID="6" GoverningCarrier="DL" FareAmount="75000" FareCurrency="JPY" FareBasisCode="TLG0ZGBD" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="ERU" FareTariff="3" FareRule="4BTN" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="7" GoverningCarrier="JL" FareAmount="71000" FareCurrency="JPY" FareBasisCode="QNN72DCE" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="8" GoverningCarrier="OZ" FareAmount="122000" FareCurrency="JPY" FareBasisCode="ELJU" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="3 4 5 7 8 9 10 12 16 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="JU30" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="9" GoverningCarrier="JL" FareAmount="71000" FareCurrency="JPY" FareBasisCode="QNN72DCE" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="10" GoverningCarrier="KE" FareAmount="105000" FareCurrency="JPY" FareBasisCode="LLG0ZHMD" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="4MTR" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="11" GoverningCarrier="JL" FareAmount="71000" FareCurrency="JPY" FareBasisCode="QNN72DCE" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment Stopover="true">
      <Surcharge Amount="31.45" Currency="NUC" Description="MISCELLANEOUS/OTHER" Type="Q" />
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ID="12" GoverningCarrier="NH" FareAmount="100000" FareCurrency="JPY" FareBasisCode="SLWRNI1" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEF" FareTariff="3" FareRule="JE86" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="13" GoverningCarrier="JL" FareAmount="76000" FareCurrency="JPY" FareBasisCode="NNN72DCE" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="14" GoverningCarrier="JL" FareAmount="81000" FareCurrency="JPY" FareBasisCode="SNN72DCE" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="15" GoverningCarrier="NH" FareAmount="101000" FareCurrency="JPY" FareBasisCode="WLXRCI1" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEF" FareTariff="3" FareRule="JE85" CabinCode="Y">
    <Segment Stopover="true">
      <Surcharge Amount="31.45" Currency="NUC" Description="MISCELLANEOUS/OTHER" Type="Q" />
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ID="16" GoverningCarrier="JL" FareAmount="76000" FareCurrency="JPY" FareBasisCode="NNN72DCE" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment Stopover="true">
      <Surcharge Amount="31.45" Currency="NUC" Description="MISCELLANEOUS/OTHER" Type="Q" />
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ID="17" GoverningCarrier="HA" FareAmount="71000" FareCurrency="JPY" FareBasisCode="LLXIRTMJ" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 2 3 4 5 6 7 8 10 12 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="JM02" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="18" GoverningCarrier="UA" FareAmount="80000" FareCurrency="JPY" FareBasisCode="LLXNNI1" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAN" FareTariff="3" FareRule="JE87" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="19" GoverningCarrier="NH" FareAmount="80000" FareCurrency="JPY" FareBasisCode="LLXNNI1" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAN" FareTariff="3" FareRule="JE87" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="20" GoverningCarrier="HA" FareAmount="71000" FareCurrency="JPY" FareBasisCode="LLXIRTMJ" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 2 3 4 5 6 7 8 10 12 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="JM02" CabinCode="Y">
    <Segment Stopover="true">
      <Surcharge Amount="31.45" Currency="NUC" Description="MISCELLANEOUS/OTHER" Type="Q" />
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ID="21" GoverningCarrier="KE" FareAmount="105000" FareCurrency="JPY" FareBasisCode="LLG0ZHMD" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="4MTR" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="22" GoverningCarrier="KE" FareAmount="115000" FareCurrency="JPY" FareBasisCode="LLO0ZHMD" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="4MTR" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="23" GoverningCarrier="JL" FareAmount="81000" FareCurrency="JPY" FareBasisCode="SNN72DCE" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="24" GoverningCarrier="DL" FareAmount="80000" FareCurrency="JPY" FareBasisCode="TLG0ZGMT" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAN" FareTariff="3" FareRule="4MTN" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="25" GoverningCarrier="HA" FareAmount="81000" FareCurrency="JPY" FareBasisCode="LLWIRTMJ" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="1 2 3 4 5 6 7 8 10 12 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="JM02" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="26" GoverningCarrier="UA" FareAmount="90000" FareCurrency="JPY" FareBasisCode="LLWNNI1" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAN" FareTariff="3" FareRule="JE87" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="27" GoverningCarrier="UA" FareAmount="75000" FareCurrency="JPY" FareBasisCode="LLXNNIBI" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="ERU" FareTariff="3" FareRule="JE87" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="28" GoverningCarrier="DL" FareAmount="90000" FareCurrency="JPY" FareBasisCode="TLO0ZGMT" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAN" FareTariff="3" FareRule="4MTN" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="29" GoverningCarrier="NH" FareAmount="90000" FareCurrency="JPY" FareBasisCode="LLWNNI1" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAN" FareTariff="3" FareRule="JE87" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="30" GoverningCarrier="HA" FareAmount="81000" FareCurrency="JPY" FareBasisCode="LLWIRTMJ" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="1 2 3 4 5 6 7 8 10 12 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="JM02" CabinCode="Y">
    <Segment Stopover="true">
      <Surcharge Amount="31.45" Currency="NUC" Description="MISCELLANEOUS/OTHER" Type="Q" />
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ID="31" GoverningCarrier="HA" FareAmount="81000" FareCurrency="JPY" FareBasisCode="LLWIRTMJ" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="1 2 3 4 5 6 7 8 10 12 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="JM02" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="32" GoverningCarrier="DL" FareAmount="80000" FareCurrency="JPY" FareBasisCode="TLG0ZGMT" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAN" FareTariff="3" FareRule="4MTN" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="33" GoverningCarrier="DL" FareAmount="90000" FareCurrency="JPY" FareBasisCode="TLO0ZGMT" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 11 12 15 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAN" FareTariff="3" FareRule="4MTN" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="34" GoverningCarrier="JL" FareAmount="71000" FareCurrency="JPY" FareBasisCode="QNN72DCE" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="1 4 5 6 7 8 9 10 12 15 16 17 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XAP" FareTariff="3" FareRule="5562" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="35" GoverningCarrier="NH" FareAmount="111000" FareCurrency="JPY" FareBasisCode="WLWRCI1" FarePassengerType="ADT" Directionality="TO" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEF" FareTariff="3" FareRule="JE85" CabinCode="Y">
    <Segment Stopover="true">
      <Surcharge Amount="31.45" Currency="NUC" Description="MISCELLANEOUS/OTHER" Type="Q" />
    </Segment>
  </FareComponentDesc>
  <FareComponentDesc ID="36" GoverningCarrier="NH" FareAmount="90000" FareCurrency="JPY" FareBasisCode="SLXRNI1" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="2 3 4 5 6 7 8 9 10 12 15 16 17 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEF" FareTariff="3" FareRule="JE86" CabinCode="Y">
    <Segment Stopover="true" />
  </FareComponentDesc>
  <FareComponentDesc ID="37" GoverningCarrier="HA" FareAmount="71000" FareCurrency="JPY" FareBasisCode="LLXIRTMJ" FarePassengerType="ADT" Directionality="FROM" ApplicablePricingCategories="1 2 3 4 5 6 7 8 10 12 16 23 31 33" VendorCode="ATP" FareTypeBitmap="00" FareType="XEX" FareTariff="3" FareRule="JM02" CabinCode="Y">
    <Segment />
    <Segment Stopover="true" />
  </FareComponentDesc>
  <ValidatingCarrierDesc ID="1" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="HA" />
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="2" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="NH" />
    <OtherTicketing Code="UA" />
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="3" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="UA" />
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="4" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="DL" />
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="5" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="NH" />
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="6" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="OZ" />
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="7" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="KE" />
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="8" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="UA" />
    <OtherTicketing Code="NH" />
  </ValidatingCarrierDesc>
  <ValidatingCarrierDesc ID="9" SettlementMethod="BSP" NewVcxProcess="true">
    <Default Code="JL" />
  </ValidatingCarrierDesc>
  <BaggageAllowanceDesc ID="1" Pieces="2" />
  <BaggageAllowanceDesc ID="2" Pieces="2" />
  <BaggageAllowanceDesc ID="3" Pieces="2" />
  <BaggageAllowanceDesc ID="4" Pieces="2" />
  <BaggageAllowanceDesc ID="5" Pieces="1" />
  <BaggageAllowanceDesc ID="6" Pieces="1" />
  <BaggageAllowanceDesc ID="7" Pieces="2" />
  <BaggageAllowanceDesc ID="8" Pieces="2" />
  <LegDesc ID="1" ElapsedTime="455">
    <Schedule Ref="55" />
  </LegDesc>
  <LegDesc ID="2" ElapsedTime="515">
    <Schedule Ref="53" />
  </LegDesc>
  <LegDesc ID="3" ElapsedTime="510">
    <Schedule Ref="54" />
  </LegDesc>
  <LegDesc ID="4" ElapsedTime="515">
    <Schedule Ref="57" />
  </LegDesc>
  <LegDesc ID="5" ElapsedTime="510">
    <Schedule Ref="58" />
  </LegDesc>
  <LegDesc ID="6" ElapsedTime="700">
    <Schedule Ref="29" />
    <Schedule Ref="26" />
  </LegDesc>
  <LegDesc ID="7" ElapsedTime="460">
    <Schedule Ref="52" />
  </LegDesc>
  <LegDesc ID="8" ElapsedTime="475">
    <Schedule Ref="49" />
  </LegDesc>
  <LegDesc ID="9" ElapsedTime="765">
    <Schedule Ref="73" />
    <Schedule Ref="63" />
  </LegDesc>
  <LegDesc ID="10" ElapsedTime="510">
    <Schedule Ref="46" />
  </LegDesc>
  <LegDesc ID="11" ElapsedTime="760">
    <Schedule Ref="41" />
    <Schedule Ref="26" />
  </LegDesc>
  <LegDesc ID="12" ElapsedTime="460">
    <Schedule Ref="47" />
  </LegDesc>
  <LegDesc ID="13" ElapsedTime="460">
    <Schedule Ref="45" />
  </LegDesc>
  <LegDesc ID="14" ElapsedTime="805">
    <Schedule Ref="31" />
    <Schedule Ref="14" DepartureDateAdjustment="1" />
  </LegDesc>
  <LegDesc ID="15" ElapsedTime="825">
    <Schedule Ref="20" />
    <Schedule Ref="7" />
  </LegDesc>
  <LegDesc ID="16" ElapsedTime="795">
    <Schedule Ref="78" />
    <Schedule Ref="63" />
  </LegDesc>
  <LegDesc ID="17" ElapsedTime="515">
    <Schedule Ref="75" />
  </LegDesc>
  <LegDesc ID="18" ElapsedTime="660">
    <Schedule Ref="77" />
    <Schedule Ref="59" />
  </LegDesc>
  <LegDesc ID="19" ElapsedTime="656">
    <Schedule Ref="8" />
    <Schedule Ref="35" />
  </LegDesc>
  <LegDesc ID="20" ElapsedTime="455">
    <Schedule Ref="71" />
  </LegDesc>
  <LegDesc ID="21" ElapsedTime="510">
    <Schedule Ref="66" />
  </LegDesc>
  <LegDesc ID="22" ElapsedTime="475">
    <Schedule Ref="68" />
  </LegDesc>
  <LegDesc ID="23" ElapsedTime="900">
    <Schedule Ref="62" />
    <Schedule Ref="80" DepartureDateAdjustment="1" />
  </LegDesc>
  <LegDesc ID="24" ElapsedTime="910">
    <Schedule Ref="37" />
    <Schedule Ref="17" />
  </LegDesc>
  <LegDesc ID="25" ElapsedTime="747">
    <Schedule Ref="8" />
    <Schedule Ref="43" />
  </LegDesc>
  <LegDesc ID="26" ElapsedTime="640">
    <Schedule Ref="15" />
    <Schedule Ref="26" />
  </LegDesc>
  <LegDesc ID="27" ElapsedTime="820">
    <Schedule Ref="56" />
    <Schedule Ref="63" />
  </LegDesc>
  <LegDesc ID="28" ElapsedTime="440">
    <Schedule Ref="61" />
  </LegDesc>
  <LegDesc ID="29" ElapsedTime="435">
    <Schedule Ref="64" />
  </LegDesc>
  <LegDesc ID="30" ElapsedTime="440">
    <Schedule Ref="65" />
  </LegDesc>
  <LegDesc ID="31" ElapsedTime="455">
    <Schedule Ref="21" />
  </LegDesc>
  <LegDesc ID="32" ElapsedTime="475">
    <Schedule Ref="19" />
  </LegDesc>
  <LegDesc ID="33" ElapsedTime="505">
    <Schedule Ref="22" />
  </LegDesc>
  <LegDesc ID="34" ElapsedTime="530">
    <Schedule Ref="25" />
  </LegDesc>
  <LegDesc ID="35" ElapsedTime="515">
    <Schedule Ref="24" />
  </LegDesc>
  <LegDesc ID="36" ElapsedTime="455">
    <Schedule Ref="12" />
  </LegDesc>
  <LegDesc ID="37" ElapsedTime="775">
    <Schedule Ref="67" />
    <Schedule Ref="26" />
  </LegDesc>
  <LegDesc ID="38" ElapsedTime="903">
    <Schedule Ref="13" />
    <Schedule Ref="59" />
  </LegDesc>
  <LegDesc ID="39" ElapsedTime="725">
    <Schedule Ref="36" />
    <Schedule Ref="63" />
  </LegDesc>
  <LegDesc ID="40" ElapsedTime="500">
    <Schedule Ref="16" />
  </LegDesc>
  <LegDesc ID="41" ElapsedTime="747">
    <Schedule Ref="11" />
    <Schedule Ref="59" />
  </LegDesc>
  <LegDesc ID="42" ElapsedTime="500">
    <Schedule Ref="9" />
  </LegDesc>
  <LegDesc ID="43" ElapsedTime="500">
    <Schedule Ref="10" />
  </LegDesc>
  <LegDesc ID="44" ElapsedTime="858">
    <Schedule Ref="8" />
    <Schedule Ref="51" />
  </LegDesc>
  <LegDesc ID="45" ElapsedTime="450">
    <Schedule Ref="2" />
  </LegDesc>
  <LegDesc ID="46" ElapsedTime="510">
    <Schedule Ref="6" />
  </LegDesc>
  <LegDesc ID="47" ElapsedTime="510">
    <Schedule Ref="4" />
  </LegDesc>
  <LegDesc ID="48" ElapsedTime="440">
    <Schedule Ref="5" />
  </LegDesc>
  <LegDesc ID="49" ElapsedTime="730">
    <Schedule Ref="60" />
    <Schedule Ref="1" />
  </LegDesc>
  <LegDesc ID="50" ElapsedTime="820">
    <Schedule Ref="79" />
    <Schedule Ref="26" />
  </LegDesc>
  <LegDesc ID="51" ElapsedTime="780">
    <Schedule Ref="44" />
    <Schedule Ref="74" DepartureDateAdjustment="1" />
  </LegDesc>
  <LegDesc ID="52" ElapsedTime="799">
    <Schedule Ref="39" />
    <Schedule Ref="59" />
  </LegDesc>
  <LegDesc ID="53" ElapsedTime="705">
    <Schedule Ref="38" />
    <Schedule Ref="59" />
  </LegDesc>
  <LegDesc ID="54" ElapsedTime="650">
    <Schedule Ref="18" />
    <Schedule Ref="72" />
  </LegDesc>
  <LegDesc ID="55" ElapsedTime="515">
    <Schedule Ref="40" />
  </LegDesc>
  <LegDesc ID="56" ElapsedTime="632">
    <Schedule Ref="8" />
    <Schedule Ref="76" />
  </LegDesc>
  <LegDesc ID="57" ElapsedTime="440">
    <Schedule Ref="33" />
  </LegDesc>
  <LegDesc ID="58" ElapsedTime="730">
    <Schedule Ref="42" />
    <Schedule Ref="50" />
  </LegDesc>
  <LegDesc ID="59" ElapsedTime="440">
    <Schedule Ref="34" />
  </LegDesc>
  <LegDesc ID="60" ElapsedTime="610">
    <Schedule Ref="3" />
    <Schedule Ref="72" />
  </LegDesc>
  <LegDesc ID="61" ElapsedTime="793">
    <Schedule Ref="8" />
    <Schedule Ref="69" />
  </LegDesc>
  <LegDesc ID="62" ElapsedTime="770">
    <Schedule Ref="48" />
    <Schedule Ref="23" DepartureDateAdjustment="1" />
  </LegDesc>
  <LegDesc ID="63" ElapsedTime="475">
    <Schedule Ref="27" />
  </LegDesc>
  <LegDesc ID="64" ElapsedTime="707">
    <Schedule Ref="8" />
    <Schedule Ref="70" />
  </LegDesc>
  <LegDesc ID="65" ElapsedTime="435">
    <Schedule Ref="28" />
  </LegDesc>
  <LegDesc ID="66" ElapsedTime="465">
    <Schedule Ref="30" />
  </LegDesc>
  <LegDesc ID="67" ElapsedTime="450">
    <Schedule Ref="32" />
  </LegDesc>
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription DepartureDate="2022-06-01" DepartureLocation="HND" ArrivalLocation="HNL" />
      <LegDescription DepartureDate="2022-06-10" DepartureLocation="HNL" ArrivalLocation="HND" />
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="50" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="48" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="26" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="48" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="3" PricingSource="ADVJR1">
      <Leg Ref="26" />
      <Leg Ref="51" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="32" />
            <Tax Ref="18" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="48" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="4" PricingSource="ADVJR1">
      <Leg Ref="11" />
      <Leg Ref="51" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="32" />
            <Tax Ref="18" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="48" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="5" PricingSource="ADVJR1">
      <Leg Ref="11" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="48" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="6" PricingSource="ADVJR1">
      <Leg Ref="6" />
      <Leg Ref="51" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="32" />
            <Tax Ref="18" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="48" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="7" PricingSource="ADVJR1">
      <Leg Ref="6" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="48" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97150" TotalTaxes="26150" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="8" PricingSource="ADVJR1">
      <Leg Ref="60" />
      <Leg Ref="51" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="2" />
            <Tax Ref="32" />
            <Tax Ref="18" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="8" />
            <Tax Ref="9" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="6" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97680" TotalTaxes="26680" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97680" TotalTaxes="26680" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="9" PricingSource="ADVJR1">
      <Leg Ref="60" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="2" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="8" />
            <Tax Ref="9" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="6" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97680" TotalTaxes="26680" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97680" TotalTaxes="26680" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="10" PricingSource="ADVJR1">
      <Leg Ref="11" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="11" PricingSource="ADVJR1">
      <Leg Ref="11" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="12" PricingSource="ADVJR1">
      <Leg Ref="50" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="13" PricingSource="ADVJR1">
      <Leg Ref="50" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="14" PricingSource="ADVJR1">
      <Leg Ref="11" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="15" PricingSource="ADVJR1">
      <Leg Ref="11" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="16" PricingSource="ADVJR1">
      <Leg Ref="6" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="17" PricingSource="ADVJR1">
      <Leg Ref="6" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="18" PricingSource="ADVJR1">
      <Leg Ref="6" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="19" PricingSource="ADVJR1">
      <Leg Ref="6" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="20" PricingSource="ADVJR1">
      <Leg Ref="26" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="21" PricingSource="ADVJR1">
      <Leg Ref="26" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="22" PricingSource="ADVJR1">
      <Leg Ref="26" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="23" PricingSource="ADVJR1">
      <Leg Ref="26" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99920" TotalTaxes="25420" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="24" PricingSource="ADVJR1">
      <Leg Ref="15" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="39" />
            <Tax Ref="12" />
            <Tax Ref="71" />
            <Tax Ref="61" />
            <Tax Ref="88" />
            <Tax Ref="29" />
            <Tax Ref="55" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="85" />
            <Tax Ref="43" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="3" />
            <TaxSummary Ref="7" />
            <TaxSummary Ref="45" />
            <TaxSummary Ref="39" />
            <TaxSummary Ref="58" />
            <TaxSummary Ref="23" />
            <TaxSummary Ref="34" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100400" TotalTaxes="25900" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100400" TotalTaxes="25900" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="25" PricingSource="ADVJR1">
      <Leg Ref="60" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="2" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="8" />
            <Tax Ref="9" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="44" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100450" TotalTaxes="25950" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100450" TotalTaxes="25950" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="26" PricingSource="ADVJR1">
      <Leg Ref="60" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="2" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="8" />
            <Tax Ref="9" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="44" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100450" TotalTaxes="25950" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100450" TotalTaxes="25950" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="27" PricingSource="ADVJR1">
      <Leg Ref="60" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="2" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="8" />
            <Tax Ref="9" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="44" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100450" TotalTaxes="25950" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100450" TotalTaxes="25950" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="28" PricingSource="ADVJR1">
      <Leg Ref="60" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="2" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="8" />
            <Tax Ref="9" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="44" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100450" TotalTaxes="25950" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100450" TotalTaxes="25950" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="29" PricingSource="ADVJR1">
      <Leg Ref="16" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="30" PricingSource="ADVJR1">
      <Leg Ref="16" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="31" PricingSource="ADVJR1">
      <Leg Ref="39" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="32" PricingSource="ADVJR1">
      <Leg Ref="39" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="33" PricingSource="ADVJR1">
      <Leg Ref="39" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="34" PricingSource="ADVJR1">
      <Leg Ref="39" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101730" TotalTaxes="23630" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="35" PricingSource="ADVJR1">
      <Leg Ref="36" />
      <Leg Ref="18" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="8" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="7" />
            <Tax Ref="80" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="36" PricingSource="ADVJR1">
      <Leg Ref="36" />
      <Leg Ref="53" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="7" />
            <Tax Ref="80" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="37" PricingSource="ADVJR1">
      <Leg Ref="36" />
      <Leg Ref="41" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="7" />
            <Tax Ref="80" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="38" PricingSource="ADVJR1">
      <Leg Ref="36" />
      <Leg Ref="52" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="5" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="7" />
            <Tax Ref="80" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="39" PricingSource="ADVJR1">
      <Leg Ref="1" />
      <Leg Ref="18" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="8" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="7" />
            <Tax Ref="80" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="40" PricingSource="ADVJR1">
      <Leg Ref="1" />
      <Leg Ref="53" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="7" />
            <Tax Ref="80" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="41" PricingSource="ADVJR1">
      <Leg Ref="1" />
      <Leg Ref="41" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="7" />
            <Tax Ref="80" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="42" PricingSource="ADVJR1">
      <Leg Ref="1" />
      <Leg Ref="52" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="5" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="7" />
            <Tax Ref="80" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="43" PricingSource="ADVJR1">
      <Leg Ref="66" />
      <Leg Ref="34" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="DL" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="14:03" GoverningCarriers="DL DL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="6">
              <Segment BookingCode="E" DualInventoryCode="T" CabinCode="Y" MealCode="B" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="4">
              <Segment BookingCode="E" DualInventoryCode="T" CabinCode="Y" MealCode="B" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="4" />
            <Tax Ref="68" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="12" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="80000" BaseFareCurrency="JPY" EquivalentAmount="80000" EquivalentCurrency="JPY" ConstructionAmount="718.89" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="0" />
              <Allowance Ref="6" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="1" />
              <Allowance Ref="6" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="80000" BaseFareCurrency="JPY" ConstructionAmount="718.89" ConstructionCurrency="NUC" EquivalentAmount="80000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="4" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="44" PricingSource="ADVJR1">
      <Leg Ref="25" />
      <Leg Ref="3" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="45" PricingSource="ADVJR1">
      <Leg Ref="25" />
      <Leg Ref="21" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="46" PricingSource="ADVJR1">
      <Leg Ref="64" />
      <Leg Ref="3" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="47" PricingSource="ADVJR1">
      <Leg Ref="64" />
      <Leg Ref="21" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="48" PricingSource="ADVJR1">
      <Leg Ref="19" />
      <Leg Ref="3" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="49" PricingSource="ADVJR1">
      <Leg Ref="19" />
      <Leg Ref="21" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="50" PricingSource="ADVJR1">
      <Leg Ref="8" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="2" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105090" TotalTaxes="25590" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105090" TotalTaxes="25590" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="51" PricingSource="ADVJR1">
      <Leg Ref="22" />
      <Leg Ref="51" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="32" />
            <Tax Ref="18" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="30" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105090" TotalTaxes="25590" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105090" TotalTaxes="25590" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="52" PricingSource="ADVJR1">
      <Leg Ref="8" />
      <Leg Ref="51" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="32" />
            <Tax Ref="18" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="30" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105090" TotalTaxes="25590" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105090" TotalTaxes="25590" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="53" PricingSource="ADVJR1">
      <Leg Ref="22" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="2" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105090" TotalTaxes="25590" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105090" TotalTaxes="25590" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="54" PricingSource="ADVJR1">
      <Leg Ref="31" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="55" PricingSource="ADVJR1">
      <Leg Ref="20" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="56" PricingSource="ADVJR1">
      <Leg Ref="31" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="57" PricingSource="ADVJR1">
      <Leg Ref="20" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="58" PricingSource="ADVJR1">
      <Leg Ref="20" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="59" PricingSource="ADVJR1">
      <Leg Ref="20" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="60" PricingSource="ADVJR1">
      <Leg Ref="31" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="61" PricingSource="ADVJR1">
      <Leg Ref="31" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.38" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="62" PricingSource="ADVJR1">
      <Leg Ref="1" />
      <Leg Ref="21" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="63" PricingSource="ADVJR1">
      <Leg Ref="1" />
      <Leg Ref="3" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="64" PricingSource="ADVJR1">
      <Leg Ref="36" />
      <Leg Ref="21" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="65" PricingSource="ADVJR1">
      <Leg Ref="36" />
      <Leg Ref="3" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107260" TotalTaxes="24260" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="66" PricingSource="ADVJR1">
      <Leg Ref="8" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="67" PricingSource="ADVJR1">
      <Leg Ref="8" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="68" PricingSource="ADVJR1">
      <Leg Ref="8" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="69" PricingSource="ADVJR1">
      <Leg Ref="22" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="70" PricingSource="ADVJR1">
      <Leg Ref="22" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="71" PricingSource="ADVJR1">
      <Leg Ref="22" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="72" PricingSource="ADVJR1">
      <Leg Ref="22" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="73" PricingSource="ADVJR1">
      <Leg Ref="8" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" EquivalentAmount="83000" EquivalentCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="107860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="83000" BaseFareCurrency="JPY" ConstructionAmount="745.85" ConstructionCurrency="NUC" EquivalentAmount="83000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="74" PricingSource="ADVJR1">
      <Leg Ref="56" />
      <Leg Ref="3" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="1">
              <Segment BookingCode="H" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="H" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="108900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="84000" BaseFareCurrency="JPY" EquivalentAmount="84000" EquivalentCurrency="JPY" ConstructionAmount="754.84" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="108900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="84000" BaseFareCurrency="JPY" ConstructionAmount="754.84" ConstructionCurrency="NUC" EquivalentAmount="84000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="75" PricingSource="ADVJR1">
      <Leg Ref="56" />
      <Leg Ref="21" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="1">
              <Segment BookingCode="H" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="H" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="108900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="84000" BaseFareCurrency="JPY" EquivalentAmount="84000" EquivalentCurrency="JPY" ConstructionAmount="754.84" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="108900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="84000" BaseFareCurrency="JPY" ConstructionAmount="754.84" ConstructionCurrency="NUC" EquivalentAmount="84000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="76" PricingSource="ADVJR1">
      <Leg Ref="48" />
      <Leg Ref="4" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="15">
              <Segment BookingCode="W" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="35">
              <Segment BookingCode="W" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="137860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="113000" BaseFareCurrency="JPY" EquivalentAmount="113000" EquivalentCurrency="JPY" ConstructionAmount="1015.44" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="137860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="113000" BaseFareCurrency="JPY" ConstructionAmount="1015.44" ConstructionCurrency="NUC" EquivalentAmount="113000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
  </ItineraryGroup>
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription DepartureDate="2022-06-01" DepartureLocation="HND" ArrivalLocation="HNL" />
      <LegDescription DepartureDate="2022-06-10" DepartureLocation="HNL" ArrivalLocation="NRT" />
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="26" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="6" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="3" PricingSource="ADVJR1">
      <Leg Ref="6" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="4" PricingSource="ADVJR1">
      <Leg Ref="11" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="5" PricingSource="ADVJR1">
      <Leg Ref="11" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="6" PricingSource="ADVJR1">
      <Leg Ref="50" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="7" PricingSource="ADVJR1">
      <Leg Ref="50" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="8" PricingSource="ADVJR1">
      <Leg Ref="26" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="50" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="9" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96420" TotalTaxes="25420" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="9" PricingSource="ADVJR1">
      <Leg Ref="15" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="39" />
            <Tax Ref="12" />
            <Tax Ref="71" />
            <Tax Ref="61" />
            <Tax Ref="88" />
            <Tax Ref="29" />
            <Tax Ref="55" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="85" />
            <Tax Ref="43" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="3" />
            <TaxSummary Ref="7" />
            <TaxSummary Ref="45" />
            <TaxSummary Ref="39" />
            <TaxSummary Ref="58" />
            <TaxSummary Ref="23" />
            <TaxSummary Ref="34" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96900" TotalTaxes="25900" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96900" TotalTaxes="25900" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="10" PricingSource="ADVJR1">
      <Leg Ref="60" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="2" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="8" />
            <Tax Ref="9" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="44" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96950" TotalTaxes="25950" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96950" TotalTaxes="25950" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="11" PricingSource="ADVJR1">
      <Leg Ref="60" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="2" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="8" />
            <Tax Ref="9" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="44" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96950" TotalTaxes="25950" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96950" TotalTaxes="25950" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="12" PricingSource="ADVJR1">
      <Leg Ref="16" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98230" TotalTaxes="23630" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" EquivalentAmount="74600" EquivalentCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98230" TotalTaxes="23630" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" EquivalentAmount="74600" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="13" PricingSource="ADVJR1">
      <Leg Ref="16" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98230" TotalTaxes="23630" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" EquivalentAmount="74600" EquivalentCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98230" TotalTaxes="23630" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" EquivalentAmount="74600" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="14" PricingSource="ADVJR1">
      <Leg Ref="39" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98230" TotalTaxes="23630" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" EquivalentAmount="74600" EquivalentCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98230" TotalTaxes="23630" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" EquivalentAmount="74600" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="15" PricingSource="ADVJR1">
      <Leg Ref="39" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="65" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="41" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="29" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98230" TotalTaxes="23630" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" EquivalentAmount="74600" EquivalentCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98230" TotalTaxes="23630" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" EquivalentAmount="74600" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="16" PricingSource="ADVJR1">
      <Leg Ref="25" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="17" PricingSource="ADVJR1">
      <Leg Ref="61" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="18" PricingSource="ADVJR1">
      <Leg Ref="44" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="19" PricingSource="ADVJR1">
      <Leg Ref="64" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="20" PricingSource="ADVJR1">
      <Leg Ref="19" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="37">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100900" TotalTaxes="24900" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="21" PricingSource="ADVJR1">
      <Leg Ref="31" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" EquivalentAmount="77000" EquivalentCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" EquivalentAmount="77000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="22" PricingSource="ADVJR1">
      <Leg Ref="20" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" EquivalentAmount="77000" EquivalentCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" EquivalentAmount="77000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="23" PricingSource="ADVJR1">
      <Leg Ref="20" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" EquivalentAmount="77000" EquivalentCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" EquivalentAmount="77000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="24" PricingSource="ADVJR1">
      <Leg Ref="31" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="16">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" EquivalentAmount="77000" EquivalentCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" EquivalentAmount="77000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="25" PricingSource="ADVJR1">
      <Leg Ref="36" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="26" PricingSource="ADVJR1">
      <Leg Ref="1" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="20">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103760" TotalTaxes="24260" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="27" PricingSource="ADVJR1">
      <Leg Ref="8" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="28" PricingSource="ADVJR1">
      <Leg Ref="22" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="29" PricingSource="ADVJR1">
      <Leg Ref="22" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="30" PricingSource="ADVJR1">
      <Leg Ref="8" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="5">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104360" TotalTaxes="24860" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="31" PricingSource="ADVJR1">
      <Leg Ref="56" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="1">
              <Segment BookingCode="H" CabinCode="Y" MealCode="MM" SeatsAvailable="9" />
              <Segment BookingCode="H" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="6" />
            <Tax Ref="13" />
            <Tax Ref="80" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="40" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" EquivalentAmount="80500" EquivalentCurrency="JPY" ConstructionAmount="723.39" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105400" TotalTaxes="24900" Currency="JPY" BaseFareAmount="80500" BaseFareCurrency="JPY" ConstructionAmount="723.39" ConstructionCurrency="NUC" EquivalentAmount="80500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="32" PricingSource="ADVJR1">
      <Leg Ref="66" />
      <Leg Ref="14" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="DL" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="14:03" GoverningCarriers="DL DL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="24">
              <Segment BookingCode="T" CabinCode="Y" MealCode="B" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="28">
              <Segment BookingCode="T" CabinCode="Y" MealCode="D" SeatsAvailable="4" />
              <Segment BookingCode="T" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="30" />
            <Tax Ref="4" />
            <Tax Ref="68" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="19" />
            <TaxSummary Ref="12" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="110210" TotalTaxes="25210" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="0" />
              <Allowance Ref="6" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="6" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="110210" TotalTaxes="25210" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="4" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="33" PricingSource="ADVJR1">
      <Leg Ref="48" />
      <Leg Ref="35" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="15">
              <Segment BookingCode="W" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="12">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="128860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" EquivalentAmount="104000" EquivalentCurrency="JPY" ConstructionAmount="934.56" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="128860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" ConstructionAmount="934.56" ConstructionCurrency="NUC" EquivalentAmount="104000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="34" PricingSource="ADVJR1">
      <Leg Ref="48" />
      <Leg Ref="46" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="15">
              <Segment BookingCode="W" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="12">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="128860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" EquivalentAmount="104000" EquivalentCurrency="JPY" ConstructionAmount="934.56" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="128860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" ConstructionAmount="934.56" ConstructionCurrency="NUC" EquivalentAmount="104000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="35" PricingSource="ADVJR1">
      <Leg Ref="48" />
      <Leg Ref="32" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="15">
              <Segment BookingCode="W" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="12">
              <Segment BookingCode="S" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="66" />
            <Tax Ref="35" />
            <Tax Ref="58" />
            <Tax Ref="87" />
            <Tax Ref="15" />
            <Tax Ref="11" />
            <Tax Ref="52" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="80" />
            <Tax Ref="69" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="38" />
            <TaxSummary Ref="57" />
            <TaxSummary Ref="8" />
            <TaxSummary Ref="15" />
            <TaxSummary Ref="31" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="128860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" EquivalentAmount="104000" EquivalentCurrency="JPY" ConstructionAmount="934.56" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="128860" TotalTaxes="24860" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" ConstructionAmount="934.56" ConstructionCurrency="NUC" EquivalentAmount="104000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
  </ItineraryGroup>
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription DepartureDate="2022-06-01" DepartureLocation="NRT" ArrivalLocation="HNL" />
      <LegDescription DepartureDate="2022-06-10" DepartureLocation="HNL" ArrivalLocation="HND" />
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="37" />
      <Leg Ref="51" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="54" />
            <Tax Ref="32" />
            <Tax Ref="18" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="32" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97250" TotalTaxes="26250" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97250" TotalTaxes="26250" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="37" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="54" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="32" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="97250" TotalTaxes="26250" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="97250" TotalTaxes="26250" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="3" PricingSource="ADVJR1">
      <Leg Ref="67" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="13">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="2" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="99140" TotalTaxes="25640" Currency="JPY" BaseFareAmount="73500" BaseFareCurrency="JPY" EquivalentAmount="73500" EquivalentCurrency="JPY" ConstructionAmount="660.48" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="99140" TotalTaxes="25640" Currency="JPY" BaseFareAmount="73500" BaseFareCurrency="JPY" ConstructionAmount="660.48" ConstructionCurrency="NUC" EquivalentAmount="73500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="4" PricingSource="ADVJR1">
      <Leg Ref="37" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="54" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="49" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100020" TotalTaxes="25520" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100020" TotalTaxes="25520" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="5" PricingSource="ADVJR1">
      <Leg Ref="37" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="54" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="49" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100020" TotalTaxes="25520" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100020" TotalTaxes="25520" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="6" PricingSource="ADVJR1">
      <Leg Ref="37" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="54" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="49" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100020" TotalTaxes="25520" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100020" TotalTaxes="25520" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="7" PricingSource="ADVJR1">
      <Leg Ref="37" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="54" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="49" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100020" TotalTaxes="25520" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" EquivalentAmount="74500" EquivalentCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100020" TotalTaxes="25520" Currency="JPY" BaseFareAmount="74500" BaseFareCurrency="JPY" ConstructionAmount="669.47" ConstructionCurrency="NUC" EquivalentAmount="74500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="8" PricingSource="ADVJR1">
      <Leg Ref="45" />
      <Leg Ref="41" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="17">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="7" />
            <Tax Ref="3" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="9" PricingSource="ADVJR1">
      <Leg Ref="45" />
      <Leg Ref="52" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="17">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="5" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="7" />
            <Tax Ref="3" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="10" PricingSource="ADVJR1">
      <Leg Ref="45" />
      <Leg Ref="38" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="17">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="7" />
            <Tax Ref="3" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="11" PricingSource="ADVJR1">
      <Leg Ref="45" />
      <Leg Ref="53" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="17">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="7" />
            <Tax Ref="3" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="12" PricingSource="ADVJR1">
      <Leg Ref="45" />
      <Leg Ref="18" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="17">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="25">
              <Segment BookingCode="L" CabinCode="Y" SeatsAvailable="8" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="7" />
            <Tax Ref="3" />
            <Tax Ref="40" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="13" PricingSource="ADVJR1">
      <Leg Ref="9" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="78" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="51" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101830" TotalTaxes="23730" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101830" TotalTaxes="23730" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="14" PricingSource="ADVJR1">
      <Leg Ref="9" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="78" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="51" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101830" TotalTaxes="23730" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101830" TotalTaxes="23730" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="15" PricingSource="ADVJR1">
      <Leg Ref="9" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="78" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="51" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101830" TotalTaxes="23730" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101830" TotalTaxes="23730" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="16" PricingSource="ADVJR1">
      <Leg Ref="9" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="78" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="51" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101830" TotalTaxes="23730" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" EquivalentAmount="78100" EquivalentCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101830" TotalTaxes="23730" Currency="JPY" BaseFareAmount="78100" BaseFareCurrency="JPY" ConstructionAmount="701.37" ConstructionCurrency="NUC" EquivalentAmount="78100" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="17" PricingSource="ADVJR1">
      <Leg Ref="67" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="13">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" EquivalentAmount="77000" EquivalentCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" EquivalentAmount="77000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="18" PricingSource="ADVJR1">
      <Leg Ref="67" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="13">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" EquivalentAmount="77000" EquivalentCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" EquivalentAmount="77000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="19" PricingSource="ADVJR1">
      <Leg Ref="67" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="13">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" EquivalentAmount="77000" EquivalentCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" EquivalentAmount="77000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="20" PricingSource="ADVJR1">
      <Leg Ref="67" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="13">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="101910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" EquivalentAmount="77000" EquivalentCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="101910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="77000" BaseFareCurrency="JPY" ConstructionAmount="691.93" ConstructionCurrency="NUC" EquivalentAmount="77000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="21" PricingSource="ADVJR1">
      <Leg Ref="54" />
      <Leg Ref="51" />
      <PricingInformation PricingSubsource="SPMIP">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="14">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="57" />
            <Tax Ref="16" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="35" />
            <Tax Ref="32" />
            <Tax Ref="18" />
            <Tax Ref="8" />
            <Tax Ref="13" />
            <Tax Ref="9" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="59" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="102840" TotalTaxes="26840" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="102840" TotalTaxes="26840" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="22" PricingSource="ADVJR1">
      <Leg Ref="54" />
      <Leg Ref="62" />
      <PricingInformation PricingSubsource="SPMIP">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="14">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="7">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" />
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="57" />
            <Tax Ref="16" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="35" />
            <Tax Ref="70" />
            <Tax Ref="84" />
            <Tax Ref="8" />
            <Tax Ref="13" />
            <Tax Ref="9" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="59" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="102840" TotalTaxes="26840" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="102840" TotalTaxes="26840" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="23" PricingSource="ADVJR1">
      <Leg Ref="45" />
      <Leg Ref="3" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="17">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="3" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103810" TotalTaxes="24310" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103810" TotalTaxes="24310" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="24" PricingSource="ADVJR1">
      <Leg Ref="45" />
      <Leg Ref="21" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="17">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="30">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="3" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="103810" TotalTaxes="24310" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="103810" TotalTaxes="24310" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="25" PricingSource="ADVJR1">
      <Leg Ref="12" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="23">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="26" PricingSource="ADVJR1">
      <Leg Ref="12" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="23">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="27" PricingSource="ADVJR1">
      <Leg Ref="12" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="23">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="28" PricingSource="ADVJR1">
      <Leg Ref="12" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="23">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="29" PricingSource="ADVJR1">
      <Leg Ref="54" />
      <Leg Ref="42" />
      <PricingInformation PricingSubsource="SPMIP">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="14">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="57" />
            <Tax Ref="16" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="35" />
            <Tax Ref="8" />
            <Tax Ref="13" />
            <Tax Ref="9" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="25" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105610" TotalTaxes="26110" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105610" TotalTaxes="26110" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="30" PricingSource="ADVJR1">
      <Leg Ref="54" />
      <Leg Ref="40" />
      <PricingInformation PricingSubsource="SPMIP">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="14">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="57" />
            <Tax Ref="16" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="35" />
            <Tax Ref="8" />
            <Tax Ref="13" />
            <Tax Ref="9" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="25" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105610" TotalTaxes="26110" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105610" TotalTaxes="26110" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="31" PricingSource="ADVJR1">
      <Leg Ref="54" />
      <Leg Ref="5" />
      <PricingInformation PricingSubsource="SPMIP">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="14">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="57" />
            <Tax Ref="16" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="35" />
            <Tax Ref="8" />
            <Tax Ref="13" />
            <Tax Ref="9" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="25" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105610" TotalTaxes="26110" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105610" TotalTaxes="26110" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="32" PricingSource="ADVJR1">
      <Leg Ref="54" />
      <Leg Ref="47" />
      <PricingInformation PricingSubsource="SPMIP">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="14">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="11">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="57" />
            <Tax Ref="16" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="35" />
            <Tax Ref="8" />
            <Tax Ref="13" />
            <Tax Ref="9" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="25" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="105610" TotalTaxes="26110" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" EquivalentAmount="79500" EquivalentCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="105610" TotalTaxes="26110" Currency="JPY" BaseFareAmount="79500" BaseFareCurrency="JPY" ConstructionAmount="714.40" ConstructionCurrency="NUC" EquivalentAmount="79500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="33" PricingSource="ADVJR1">
      <Leg Ref="13" />
      <Leg Ref="34" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="DL" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="14:03" GoverningCarriers="DL DL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="24">
              <Segment BookingCode="T" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="33">
              <Segment BookingCode="T" CabinCode="Y" MealCode="B" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="68" />
            <Tax Ref="49" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="12" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="0" />
              <Allowance Ref="6" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="1" />
              <Allowance Ref="6" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="4" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="34" PricingSource="ADVJR1">
      <Leg Ref="58" />
      <Leg Ref="34" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="DL" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="14:03" GoverningCarriers="DL DL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="32">
              <Segment BookingCode="T" CabinCode="Y" MealCode="L" SeatsAvailable="4" />
              <Segment BookingCode="T" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="33">
              <Segment BookingCode="T" CabinCode="Y" MealCode="B" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="30" />
            <Tax Ref="90" />
            <Tax Ref="36" />
            <Tax Ref="5" />
            <Tax Ref="68" />
            <Tax Ref="28" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="19" />
            <TaxSummary Ref="61" />
            <TaxSummary Ref="24" />
            <TaxSummary Ref="1" />
            <TaxSummary Ref="12" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="110260" TotalTaxes="25260" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="6" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="2" />
              <Allowance Ref="6" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="110260" TotalTaxes="25260" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="4" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="35" PricingSource="ADVJR1">
      <Leg Ref="28" />
      <Leg Ref="4" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="36">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="35">
              <Segment BookingCode="W" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="128910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" EquivalentAmount="104000" EquivalentCurrency="JPY" ConstructionAmount="934.57" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="128910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" ConstructionAmount="934.57" ConstructionCurrency="NUC" EquivalentAmount="104000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="36" PricingSource="ADVJR1">
      <Leg Ref="57" />
      <Leg Ref="4" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="36">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="35">
              <Segment BookingCode="W" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="128910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" EquivalentAmount="104000" EquivalentCurrency="JPY" ConstructionAmount="934.57" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="128910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" ConstructionAmount="934.57" ConstructionCurrency="NUC" EquivalentAmount="104000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="37" PricingSource="ADVJR1">
      <Leg Ref="29" />
      <Leg Ref="4" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="36">
              <Segment BookingCode="S" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="35">
              <Segment BookingCode="W" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="128910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" EquivalentAmount="104000" EquivalentCurrency="JPY" ConstructionAmount="934.57" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="128910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="104000" BaseFareCurrency="JPY" ConstructionAmount="934.57" ConstructionCurrency="NUC" EquivalentAmount="104000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
  </ItineraryGroup>
  <ItineraryGroup>
    <GroupDescription>
      <LegDescription DepartureDate="2022-06-01" DepartureLocation="NRT" ArrivalLocation="HNL" />
      <LegDescription DepartureDate="2022-06-10" DepartureLocation="HNL" ArrivalLocation="NRT" />
    </GroupDescription>
    <Itinerary ID="1" PricingSource="ADVJR1">
      <Leg Ref="37" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="54" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="49" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96520" TotalTaxes="25520" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96520" TotalTaxes="25520" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="2" PricingSource="ADVJR1">
      <Leg Ref="37" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="17" />
            <Tax Ref="19" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="26" />
            <Tax Ref="60" />
            <Tax Ref="23" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="54" />
            <Tax Ref="14" />
            <Tax Ref="13" />
            <Tax Ref="34" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="10" />
            <TaxSummary Ref="11" />
            <TaxSummary Ref="17" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="60" />
            <TaxSummary Ref="14" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="49" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="96520" TotalTaxes="25520" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" EquivalentAmount="71000" EquivalentCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="96520" TotalTaxes="25520" Currency="JPY" BaseFareAmount="71000" BaseFareCurrency="JPY" ConstructionAmount="638.02" ConstructionCurrency="NUC" EquivalentAmount="71000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="3" PricingSource="ADVJR1">
      <Leg Ref="9" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="78" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="51" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98330" TotalTaxes="23730" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" EquivalentAmount="74600" EquivalentCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98330" TotalTaxes="23730" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" EquivalentAmount="74600" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="4" PricingSource="ADVJR1">
      <Leg Ref="27" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="78" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="51" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98330" TotalTaxes="23730" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" EquivalentAmount="74600" EquivalentCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98330" TotalTaxes="23730" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" EquivalentAmount="74600" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="5" PricingSource="ADVJR1">
      <Leg Ref="9" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="9">
              <Segment BookingCode="V" CabinCode="Y" SeatsAvailable="4" />
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="25" />
            <Tax Ref="33" />
            <Tax Ref="27" />
            <Tax Ref="24" />
            <Tax Ref="76" />
            <Tax Ref="38" />
            <Tax Ref="78" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="21" />
            <Tax Ref="47" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="21" />
            <TaxSummary Ref="18" />
            <TaxSummary Ref="16" />
            <TaxSummary Ref="43" />
            <TaxSummary Ref="22" />
            <TaxSummary Ref="51" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98330" TotalTaxes="23730" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" EquivalentAmount="74600" EquivalentCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98330" TotalTaxes="23730" Currency="JPY" BaseFareAmount="74600" BaseFareCurrency="JPY" ConstructionAmount="669.92" ConstructionCurrency="NUC" EquivalentAmount="74600" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="6" PricingSource="ADVJR1">
      <Leg Ref="67" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="13">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="73500" BaseFareCurrency="JPY" EquivalentAmount="73500" EquivalentCurrency="JPY" ConstructionAmount="660.48" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="73500" BaseFareCurrency="JPY" ConstructionAmount="660.48" ConstructionCurrency="NUC" EquivalentAmount="73500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="7" PricingSource="ADVJR1">
      <Leg Ref="67" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="13">
              <Segment BookingCode="N" CabinCode="Y" SeatsAvailable="7" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="98410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="73500" BaseFareCurrency="JPY" EquivalentAmount="73500" EquivalentCurrency="JPY" ConstructionAmount="660.48" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="98410" TotalTaxes="24910" Currency="JPY" BaseFareAmount="73500" BaseFareCurrency="JPY" ConstructionAmount="660.48" ConstructionCurrency="NUC" EquivalentAmount="73500" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="8" PricingSource="ADVJR1">
      <Leg Ref="45" />
      <Leg Ref="17" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="HA" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="23:59" GoverningCarriers="HA HA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="17">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="31">
              <Segment BookingCode="L" CabinCode="Y" MealCode="MM" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="3" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="0" />
              <Allowance Ref="1" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="HA">
              <Segment ID="1" />
              <Allowance Ref="1" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="1" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="9" PricingSource="ADVJR1">
      <Leg Ref="12" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="23">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="10" PricingSource="ADVJR1">
      <Leg Ref="12" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="23">
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="100910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="100910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="11" PricingSource="ADVJR1">
      <Leg Ref="54" />
      <Leg Ref="43" />
      <PricingInformation PricingSubsource="SPMIP">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="14">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="57" />
            <Tax Ref="16" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="35" />
            <Tax Ref="8" />
            <Tax Ref="13" />
            <Tax Ref="9" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="25" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="102110" TotalTaxes="26110" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="102110" TotalTaxes="26110" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="12" PricingSource="ADVJR1">
      <Leg Ref="54" />
      <Leg Ref="55" />
      <PricingInformation PricingSubsource="SPMIP">
        <Fare ValidatingCarrierCode="JL" VITA="true" ETicketable="true" LastTicketDate="2021-12-01" LastTicketTime="23:59" GoverningCarriers="JL JL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="14">
              <Segment BookingCode="Y" CabinCode="Y" SeatsAvailable="9" />
              <Segment BookingCode="S" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="34">
              <Segment BookingCode="Q" CabinCode="Y" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="57" />
            <Tax Ref="16" />
            <Tax Ref="86" />
            <Tax Ref="75" />
            <Tax Ref="72" />
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="48" />
            <Tax Ref="42" />
            <Tax Ref="82" />
            <Tax Ref="22" />
            <Tax Ref="35" />
            <Tax Ref="8" />
            <Tax Ref="13" />
            <Tax Ref="9" />
            <Tax Ref="67" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="25" />
            <TaxSummary Ref="56" />
            <TaxSummary Ref="50" />
            <TaxSummary Ref="46" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="26" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="47" />
            <TaxSummary Ref="13" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="102110" TotalTaxes="26110" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" EquivalentAmount="76000" EquivalentCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="7" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="JL">
              <Segment ID="2" />
              <Allowance Ref="7" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="102110" TotalTaxes="26110" Currency="JPY" BaseFareAmount="76000" BaseFareCurrency="JPY" ConstructionAmount="682.95" ConstructionCurrency="NUC" EquivalentAmount="76000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="9" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="13" PricingSource="ADVJR1">
      <Leg Ref="65" />
      <Leg Ref="63" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="27">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="3">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="104310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="80000" BaseFareCurrency="JPY" EquivalentAmount="80000" EquivalentCurrency="JPY" ConstructionAmount="718.89" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="5" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="5" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="104310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="80000" BaseFareCurrency="JPY" ConstructionAmount="718.89" ConstructionCurrency="NUC" EquivalentAmount="80000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="14" PricingSource="ADVJR1">
      <Leg Ref="65" />
      <Leg Ref="2" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="15" PricingSource="ADVJR1">
      <Leg Ref="65" />
      <Leg Ref="10" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="16" PricingSource="ADVJR1">
      <Leg Ref="59" />
      <Leg Ref="63" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="17" PricingSource="ADVJR1">
      <Leg Ref="59" />
      <Leg Ref="10" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="18" PricingSource="ADVJR1">
      <Leg Ref="59" />
      <Leg Ref="2" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="19" PricingSource="ADVJR1">
      <Leg Ref="30" />
      <Leg Ref="63" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="20" PricingSource="ADVJR1">
      <Leg Ref="30" />
      <Leg Ref="10" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="21" PricingSource="ADVJR1">
      <Leg Ref="30" />
      <Leg Ref="2" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="51" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="52" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109310" TotalTaxes="24310" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="3" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="22" PricingSource="ADVJR1">
      <Leg Ref="28" />
      <Leg Ref="10" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="23" PricingSource="ADVJR1">
      <Leg Ref="65" />
      <Leg Ref="32" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="24" PricingSource="ADVJR1">
      <Leg Ref="65" />
      <Leg Ref="46" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="25" PricingSource="ADVJR1">
      <Leg Ref="65" />
      <Leg Ref="35" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="26" PricingSource="ADVJR1">
      <Leg Ref="59" />
      <Leg Ref="32" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="27" PricingSource="ADVJR1">
      <Leg Ref="59" />
      <Leg Ref="46" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="28" PricingSource="ADVJR1">
      <Leg Ref="59" />
      <Leg Ref="35" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="29" PricingSource="ADVJR1">
      <Leg Ref="30" />
      <Leg Ref="32" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="30" PricingSource="ADVJR1">
      <Leg Ref="30" />
      <Leg Ref="46" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="31" PricingSource="ADVJR1">
      <Leg Ref="30" />
      <Leg Ref="35" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="UA" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="UA NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="18">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="51" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="0" />
              <Allowance Ref="8" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="UA">
              <Segment ID="1" />
              <Allowance Ref="8" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="8" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="32" PricingSource="ADVJR1">
      <Leg Ref="29" />
      <Leg Ref="63" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="33" PricingSource="ADVJR1">
      <Leg Ref="29" />
      <Leg Ref="10" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="34" PricingSource="ADVJR1">
      <Leg Ref="29" />
      <Leg Ref="2" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="35" PricingSource="ADVJR1">
      <Leg Ref="28" />
      <Leg Ref="2" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="36" PricingSource="ADVJR1">
      <Leg Ref="28" />
      <Leg Ref="63" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="37" PricingSource="ADVJR1">
      <Leg Ref="57" />
      <Leg Ref="63" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="38" PricingSource="ADVJR1">
      <Leg Ref="57" />
      <Leg Ref="10" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="39" PricingSource="ADVJR1">
      <Leg Ref="57" />
      <Leg Ref="2" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH UA">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="26">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <Tax Ref="64" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="37" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109610" TotalTaxes="24610" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="2" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="40" PricingSource="ADVJR1">
      <Leg Ref="29" />
      <Leg Ref="35" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="41" PricingSource="ADVJR1">
      <Leg Ref="29" />
      <Leg Ref="46" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="42" PricingSource="ADVJR1">
      <Leg Ref="29" />
      <Leg Ref="32" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="43" PricingSource="ADVJR1">
      <Leg Ref="57" />
      <Leg Ref="35" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="44" PricingSource="ADVJR1">
      <Leg Ref="28" />
      <Leg Ref="35" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="45" PricingSource="ADVJR1">
      <Leg Ref="57" />
      <Leg Ref="46" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="46" PricingSource="ADVJR1">
      <Leg Ref="28" />
      <Leg Ref="32" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="47" PricingSource="ADVJR1">
      <Leg Ref="57" />
      <Leg Ref="32" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="48" PricingSource="ADVJR1">
      <Leg Ref="28" />
      <Leg Ref="46" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="NH" VITA="true" ETicketable="true" LastTicketDate="2021-12-07" LastTicketTime="23:59" GoverningCarriers="NH NH">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="19">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="29">
              <Segment BookingCode="L" CabinCode="Y" MealCode="M" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="13" />
            <Tax Ref="67" />
            <Tax Ref="3" />
            <Tax Ref="53" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="4" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="0" />
              <Allowance Ref="4" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="NH">
              <Segment ID="1" />
              <Allowance Ref="4" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="109910" TotalTaxes="24910" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="5" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="49" PricingSource="ADVJR1">
      <Leg Ref="13" />
      <Leg Ref="14" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="DL" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="14:03" GoverningCarriers="DL DL">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="true">
            <FareComponent Ref="24">
              <Segment BookingCode="T" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="28">
              <Segment BookingCode="T" CabinCode="Y" MealCode="D" SeatsAvailable="4" />
              <Segment BookingCode="T" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="30" />
            <Tax Ref="68" />
            <Tax Ref="49" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="19" />
            <TaxSummary Ref="12" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="110260" TotalTaxes="25260" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" EquivalentAmount="85000" EquivalentCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="0" />
              <Allowance Ref="6" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="DL">
              <Segment ID="1" />
              <Segment ID="2" />
              <Allowance Ref="6" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="110260" TotalTaxes="25260" Currency="JPY" BaseFareAmount="85000" BaseFareCurrency="JPY" ConstructionAmount="763.83" ConstructionCurrency="NUC" EquivalentAmount="85000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="4" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="50" PricingSource="ADVJR1">
      <Leg Ref="24" />
      <Leg Ref="23" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="OZ" VITA="true" ETicketable="true" LastTicketDate="2022-05-25" LastTicketTime="23:59" GoverningCarriers="OZ OZ">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="false">
            <FareComponent Ref="8">
              <Segment BookingCode="E" CabinCode="Y" MealCode="L" SeatsAvailable="9" />
              <Segment BookingCode="E" CabinCode="Y" MealCode="BD" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="2">
              <Segment BookingCode="W" CabinCode="Y" MealCode="LS" SeatsAvailable="4" />
              <Segment BookingCode="W" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="30" />
            <Tax Ref="30" />
            <Tax Ref="90" />
            <Tax Ref="36" />
            <Tax Ref="5" />
            <Tax Ref="81" />
            <Tax Ref="89" />
            <Tax Ref="59" />
            <Tax Ref="37" />
            <Tax Ref="83" />
            <Tax Ref="79" />
            <Tax Ref="79" />
            <Tax Ref="74" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="61" />
            <TaxSummary Ref="24" />
            <TaxSummary Ref="1" />
            <TaxSummary Ref="35" />
            <TaxSummary Ref="54" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="116490" TotalTaxes="27490" Currency="JPY" BaseFareAmount="89000" BaseFareCurrency="JPY" EquivalentAmount="89000" EquivalentCurrency="JPY" ConstructionAmount="799.77" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="OZ">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="3" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="OZ">
              <Segment ID="2" />
              <Segment ID="3" />
              <Allowance Ref="3" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="116490" TotalTaxes="27490" Currency="JPY" BaseFareAmount="89000" BaseFareCurrency="JPY" ConstructionAmount="799.77" ConstructionCurrency="NUC" EquivalentAmount="89000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="6" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="51" PricingSource="ADVJR1">
      <Leg Ref="7" />
      <Leg Ref="33" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="KE" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="14:03" GoverningCarriers="KE KE">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="false">
            <FareComponent Ref="10">
              <Segment BookingCode="L" CabinCode="Y" MealCode="D" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="22">
              <Segment BookingCode="L" CabinCode="Y" MealCode="DL" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="91" />
            <Tax Ref="45" />
            <Tax Ref="10" />
            <Tax Ref="20" />
            <Tax Ref="1" />
            <Tax Ref="73" />
            <Tax Ref="46" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="62" />
            <TaxSummary Ref="33" />
            <TaxSummary Ref="5" />
            <TaxSummary Ref="41" />
            <TaxSummary Ref="12" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="134530" TotalTaxes="24530" Currency="JPY" BaseFareAmount="110000" BaseFareCurrency="JPY" EquivalentAmount="110000" EquivalentCurrency="JPY" ConstructionAmount="988.49" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="KE">
              <Segment ID="0" />
              <Allowance Ref="2" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="KE">
              <Segment ID="1" />
              <Allowance Ref="2" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="134530" TotalTaxes="24530" Currency="JPY" BaseFareAmount="110000" BaseFareCurrency="JPY" ConstructionAmount="988.49" ConstructionCurrency="NUC" EquivalentAmount="110000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="7" />
        </Fare>
      </PricingInformation>
    </Itinerary>
    <Itinerary ID="52" PricingSource="ADVJR1">
      <Leg Ref="49" />
      <Leg Ref="33" />
      <PricingInformation PricingSubsource="HPIS">
        <Fare ValidatingCarrierCode="KE" VITA="true" ETicketable="true" LastTicketDate="2021-12-03" LastTicketTime="14:03" GoverningCarriers="KE KE">
          <PassengerInfo PassengerType="ADT" PassengerNumber="1" NonRefundable="false">
            <FareComponent Ref="21">
              <Segment BookingCode="L" CabinCode="Y" MealCode="L" SeatsAvailable="4" />
              <Segment BookingCode="L" CabinCode="Y" MealCode="BD" SeatsAvailable="9" AvailabilityBreak="true" />
            </FareComponent>
            <FareComponent Ref="22">
              <Segment BookingCode="L" CabinCode="Y" MealCode="DL" SeatsAvailable="4" AvailabilityBreak="true" />
            </FareComponent>
            <Tax Ref="63" />
            <Tax Ref="62" />
            <Tax Ref="35" />
            <Tax Ref="48" />
            <Tax Ref="31" />
            <Tax Ref="44" />
            <Tax Ref="56" />
            <Tax Ref="30" />
            <Tax Ref="90" />
            <Tax Ref="36" />
            <Tax Ref="5" />
            <Tax Ref="20" />
            <Tax Ref="1" />
            <Tax Ref="73" />
            <Tax Ref="46" />
            <Tax Ref="77" />
            <TaxSummary Ref="42" />
            <TaxSummary Ref="55" />
            <TaxSummary Ref="53" />
            <TaxSummary Ref="20" />
            <TaxSummary Ref="28" />
            <TaxSummary Ref="36" />
            <TaxSummary Ref="19" />
            <TaxSummary Ref="61" />
            <TaxSummary Ref="24" />
            <TaxSummary Ref="1" />
            <TaxSummary Ref="12" />
            <TaxSummary Ref="27" />
            <CurrencyConversion From="JPY" To="JPY" ExchangeRateUsed="1.00000" />
            <PassengerTotalFare TotalFare="135590" TotalTaxes="25590" Currency="JPY" BaseFareAmount="110000" BaseFareCurrency="JPY" EquivalentAmount="110000" EquivalentCurrency="JPY" ConstructionAmount="988.49" ConstructionCurrency="NUC" />
            <BaggageInformation ProvisionType="A" AirlineCode="KE">
              <Segment ID="0" />
              <Segment ID="1" />
              <Allowance Ref="2" />
            </BaggageInformation>
            <BaggageInformation ProvisionType="A" AirlineCode="KE">
              <Segment ID="2" />
              <Allowance Ref="2" />
            </BaggageInformation>
          </PassengerInfo>
          <TotalFare TotalPrice="135590" TotalTaxes="25590" Currency="JPY" BaseFareAmount="110000" BaseFareCurrency="JPY" ConstructionAmount="988.49" ConstructionCurrency="NUC" EquivalentAmount="110000" EquivalentCurrency="JPY" />
          <ValidatingCarrier Ref="7" />
        </Fare>
      </PricingInformation>
    </Itinerary>
  </ItineraryGroup>
</GroupedItineraryResponse>
 選択{
    "OTA_AirLowFareSearchRQ": {
        "OriginDestinationInformation": [
            {
                "DepartureDateTime": "2022-03-01T00:00:00",
                "OriginLocation": {
                    "LocationCode": "TYO"
                },
                "DestinationLocation": {
                    "LocationCode": "HNL"
                },
                "RPH": "0"
                },
            {
                "DepartureDateTime": "2022-03-06T00:00:00",
                "OriginLocation": {
                    "LocationCode": "HNL"
                },
                "DestinationLocation": {
                    "LocationCode": "TYO"
                },
                "RPH": "1"
            }
        ],
        "POS": {
            "Source": [
                {
                    "PseudoCityCode": "8IC6",
                    "RequestorID": {
                        "CompanyName": {
                            "Code": "TN"
                        },
                        "ID": "1",
                        "Type": "1"
                    }
                }
            ]
        },
        "TPA_Extensions": {
                "IntelliSellTransaction": {
                "RequestType": {
                    "Name": "AD3"
                },
                "CompressResponse":{
                    "Value":false
                }                
            }
        },
        "TravelPreferences": {
            "TPA_Extensions": {
                "XOFares":{
                    "Value":true
                },
                "JumpCabinLogic":{
                    "Disabled":true
                },
                "KeepSameCabin":{
                    "Enabled":true
                },
                "ExcludeCallDirectCarriers":{
                    "Enabled":true
                }
            },
            "ValidInterlineTicket":true
        },
        "TravelerInfoSummary": {
            "AirTravelerAvail": [
                {
                    "PassengerTypeQuantity": [
                        {
                            "Code": "ADT",
                            "Quantity": 1
                        }
                    ]
                }
            ],
            "SeatsRequested": [
                1
            ]
        },
        "Version": "4"
    }
}
 選択{
    "groupedItineraryResponse": {
        "version": "6.1.0",
        "messages": [
            {
                "severity": "Info",
                "type": "WORKERTHREAD",
                "code": "TRANSACTIONID",
                "text": "6030381831092212765"
            },
            {
                "severity": "Info",
                "type": "SERVER",
                "code": "ASE032LPSCIL6DB.ATSE.CERT.ASCINT.SABRECIRRUS.COM",
                "text": "27032"
            },
            {
                "severity": "Info",
                "type": "DRE",
                "code": "RULEID",
                "text": "22288"
            },
            {
                "severity": "Info",
                "type": "DEFAULT",
                "code": "RULEID",
                "text": "21407"
            },
            {
                "severity": "Error",
                "type": "MIP",
                "code": "PROCESS",
                "text": "INTERNAL ERROR",
                "numberOfOccurences": 3
            },
            {
                "severity": "Info",
                "type": "MIP",
                "code": "MIP",
                "text": "INTERNAL ERROR"
            }
        ],
        "statistics": {
            "itineraryCount": 19
        },
        "scheduleDescs": [
            {
                "id": 1,
                "dotRating": "8",
                "onTimePerformance": 81,
                "frequency": "*MTWTF*",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 2676,
                "elapsedTime": 345,
                "departure": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "23:00:00-10:00",
                    "terminal": "2"
                },
                "arrival": {
                    "airport": "SEA",
                    "city": "SEA",
                    "state": "WA",
                    "country": "US",
                    "time": "06:45:00-08:00",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "DL",
                    "marketingFlightNumber": 440,
                    "operating": "DL",
                    "operatingFlightNumber": 440,
                    "equipment": {
                        "code": "339",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 2,
                "frequency": "*MT*T*S",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 3854,
                "elapsedTime": 595,
                "departure": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "17:05:00-10:00",
                    "terminal": "1"
                },
                "arrival": {
                    "airport": "HND",
                    "city": "TYO",
                    "country": "JP",
                    "time": "22:00:00+09:00",
                    "terminal": "3",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "HA",
                    "marketingFlightNumber": 855,
                    "operating": "HA",
                    "operatingFlightNumber": 855,
                    "equipment": {
                        "code": "332",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 3,
                "dotRating": "9",
                "frequency": "*MTWT*S",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 169,
                "elapsedTime": 49,
                "departure": {
                    "airport": "KOA",
                    "city": "KOA",
                    "state": "HI",
                    "country": "US",
                    "time": "13:10:00-10:00"
                },
                "arrival": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "13:59:00-10:00",
                    "terminal": "1"
                },
                "carrier": {
                    "marketing": "HA",
                    "marketingFlightNumber": 267,
                    "operating": "HA",
                    "operatingFlightNumber": 267,
                    "equipment": {
                        "code": "717",
                        "typeForFirstLeg": "N",
                        "typeForLastLeg": "N"
                    }
                }
            },
            {
                "id": 4,
                "frequency": "S*T*T**",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 3818,
                "elapsedTime": 600,
                "departure": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "11:00:00-10:00",
                    "terminal": "1"
                },
                "arrival": {
                    "airport": "NRT",
                    "city": "TYO",
                    "country": "JP",
                    "time": "16:00:00+09:00",
                    "terminal": "2",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "JL",
                    "marketingFlightNumber": 6405,
                    "operating": "HA",
                    "operatingFlightNumber": 821,
                    "disclosure": "HA",
                    "equipment": {
                        "code": "332",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 5,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 3983,
                "elapsedTime": 450,
                "departure": {
                    "airport": "NRT",
                    "city": "TYO",
                    "country": "JP",
                    "time": "22:00:00+09:00",
                    "terminal": "2"
                },
                "arrival": {
                    "airport": "KOA",
                    "city": "KOA",
                    "state": "HI",
                    "country": "US",
                    "time": "10:30:00-10:00"
                },
                "carrier": {
                    "marketing": "HA",
                    "marketingFlightNumber": 5387,
                    "operating": "JL",
                    "operatingFlightNumber": 770,
                    "codeShared": "JAPAN AIRLINES",
                    "equipment": {
                        "code": "767",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 6,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 4804,
                "elapsedTime": 540,
                "departure": {
                    "airport": "HND",
                    "city": "TYO",
                    "country": "JP",
                    "time": "17:20:00+09:00",
                    "terminal": "3"
                },
                "arrival": {
                    "airport": "SEA",
                    "city": "SEA",
                    "state": "WA",
                    "country": "US",
                    "time": "09:20:00-08:00"
                },
                "carrier": {
                    "marketing": "DL",
                    "marketingFlightNumber": 166,
                    "operating": "DL",
                    "operatingFlightNumber": 166,
                    "equipment": {
                        "code": "339",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 7,
                "dotRating": "9",
                "onTimePerformance": 100,
                "frequency": "*****F*",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 2676,
                "elapsedTime": 348,
                "departure": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "22:25:00-10:00",
                    "terminal": "2"
                },
                "arrival": {
                    "airport": "SEA",
                    "city": "SEA",
                    "state": "WA",
                    "country": "US",
                    "time": "06:13:00-08:00",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "DL",
                    "marketingFlightNumber": 440,
                    "operating": "DL",
                    "operatingFlightNumber": 440,
                    "equipment": {
                        "code": "339",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 8,
                "trafficRestriction": "Q",
                "frequency": "*MTWT**",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 306,
                "elapsedTime": 110,
                "departure": {
                    "airport": "NRT",
                    "city": "TYO",
                    "country": "JP",
                    "time": "15:55:00+09:00",
                    "terminal": "3"
                },
                "arrival": {
                    "airport": "KIX",
                    "city": "OSA",
                    "country": "JP",
                    "time": "17:45:00+09:00",
                    "terminal": "1"
                },
                "carrier": {
                    "marketing": "JL",
                    "marketingFlightNumber": 6003,
                    "operating": "GK",
                    "operatingFlightNumber": 205,
                    "disclosure": "GK",
                    "equipment": {
                        "code": "320",
                        "typeForFirstLeg": "N",
                        "typeForLastLeg": "N"
                    }
                }
            },
            {
                "id": 9,
                "dotRating": "9",
                "onTimePerformance": 100,
                "frequency": "****T*S",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 2676,
                "elapsedTime": 348,
                "departure": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "22:25:00-10:00",
                    "terminal": "2"
                },
                "arrival": {
                    "airport": "SEA",
                    "city": "SEA",
                    "state": "WA",
                    "country": "US",
                    "time": "06:13:00-08:00",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "DL",
                    "marketingFlightNumber": 440,
                    "operating": "DL",
                    "operatingFlightNumber": 440,
                    "equipment": {
                        "code": "339",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 10,
                "frequency": "S*TWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 3818,
                "elapsedTime": 555,
                "departure": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "12:50:00-10:00",
                    "terminal": "2"
                },
                "arrival": {
                    "airport": "NRT",
                    "city": "TYO",
                    "country": "JP",
                    "time": "17:05:00+09:00",
                    "terminal": "2",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "JL",
                    "marketingFlightNumber": 783,
                    "operating": "JL",
                    "operatingFlightNumber": 783,
                    "alliances": "OW ",
                    "equipment": {
                        "code": "767",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 11,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 250,
                "elapsedTime": 70,
                "departure": {
                    "airport": "ITM",
                    "city": "OSA",
                    "country": "JP",
                    "time": "07:10:00+09:00"
                },
                "arrival": {
                    "airport": "HND",
                    "city": "TYO",
                    "country": "JP",
                    "time": "08:20:00+09:00",
                    "terminal": "1"
                },
                "carrier": {
                    "marketing": "JL",
                    "marketingFlightNumber": 102,
                    "operating": "JL",
                    "operatingFlightNumber": 102,
                    "alliances": "OW ",
                    "equipment": {
                        "code": "788",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 12,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 268,
                "elapsedTime": 70,
                "departure": {
                    "airport": "KIX",
                    "city": "OSA",
                    "country": "JP",
                    "time": "21:15:00+09:00",
                    "terminal": "1"
                },
                "arrival": {
                    "airport": "HND",
                    "city": "TYO",
                    "country": "JP",
                    "time": "22:25:00+09:00",
                    "terminal": "1"
                },
                "carrier": {
                    "marketing": "JL",
                    "marketingFlightNumber": 228,
                    "operating": "JL",
                    "operatingFlightNumber": 228,
                    "alliances": "OW ",
                    "equipment": {
                        "code": "73H",
                        "typeForFirstLeg": "N",
                        "typeForLastLeg": "N"
                    }
                }
            },
            {
                "id": 13,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 4804,
                "elapsedTime": 650,
                "departure": {
                    "airport": "SEA",
                    "city": "SEA",
                    "state": "WA",
                    "country": "US",
                    "time": "11:20:00-08:00"
                },
                "arrival": {
                    "airport": "HND",
                    "city": "TYO",
                    "country": "JP",
                    "time": "15:10:00+09:00",
                    "terminal": "3",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "DL",
                    "marketingFlightNumber": 167,
                    "operating": "DL",
                    "operatingFlightNumber": 167,
                    "equipment": {
                        "code": "339",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 14,
                "frequency": "S*TWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 250,
                "elapsedTime": 65,
                "departure": {
                    "airport": "HND",
                    "city": "TYO",
                    "country": "JP",
                    "time": "15:00:00+09:00",
                    "terminal": "1"
                },
                "arrival": {
                    "airport": "ITM",
                    "city": "OSA",
                    "country": "JP",
                    "time": "16:05:00+09:00"
                },
                "carrier": {
                    "marketing": "JL",
                    "marketingFlightNumber": 125,
                    "operating": "JL",
                    "operatingFlightNumber": 125,
                    "alliances": "OW ",
                    "equipment": {
                        "code": "788",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 15,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 4116,
                "elapsedTime": 430,
                "departure": {
                    "airport": "KIX",
                    "city": "OSA",
                    "country": "JP",
                    "time": "20:45:00+09:00",
                    "terminal": "1"
                },
                "arrival": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "08:55:00-10:00",
                    "terminal": "2"
                },
                "carrier": {
                    "marketing": "JL",
                    "marketingFlightNumber": 6408,
                    "operating": "HA",
                    "operatingFlightNumber": 450,
                    "disclosure": "HA",
                    "equipment": {
                        "code": "332",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 16,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 3854,
                "elapsedTime": 590,
                "departure": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "12:20:00-10:00",
                    "terminal": "1"
                },
                "arrival": {
                    "airport": "HND",
                    "city": "TYO",
                    "country": "JP",
                    "time": "17:10:00+09:00",
                    "terminal": "3",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "HA",
                    "marketingFlightNumber": 863,
                    "operating": "HA",
                    "operatingFlightNumber": 863,
                    "equipment": {
                        "code": "332",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 17,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 4116,
                "elapsedTime": 635,
                "departure": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "13:10:00-10:00",
                    "terminal": "1"
                },
                "arrival": {
                    "airport": "KIX",
                    "city": "OSA",
                    "country": "JP",
                    "time": "18:45:00+09:00",
                    "terminal": "1",
                    "dateAdjustment": 1
                },
                "carrier": {
                    "marketing": "JL",
                    "marketingFlightNumber": 6407,
                    "operating": "HA",
                    "operatingFlightNumber": 449,
                    "disclosure": "HA",
                    "equipment": {
                        "code": "332",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 18,
                "frequency": "SMTWTFS",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 3818,
                "elapsedTime": 405,
                "departure": {
                    "airport": "NRT",
                    "city": "TYO",
                    "country": "JP",
                    "time": "19:55:00+09:00",
                    "terminal": "2"
                },
                "arrival": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "07:40:00-10:00",
                    "terminal": "2"
                },
                "carrier": {
                    "marketing": "HA",
                    "marketingFlightNumber": 822,
                    "operating": "HA",
                    "operatingFlightNumber": 822,
                    "equipment": {
                        "code": "332",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 19,
                "dotRating": "7",
                "onTimePerformance": 74,
                "frequency": "S***T*S",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 2676,
                "elapsedTime": 380,
                "departure": {
                    "airport": "SEA",
                    "city": "SEA",
                    "state": "WA",
                    "country": "US",
                    "time": "15:45:00-08:00"
                },
                "arrival": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "20:05:00-10:00",
                    "terminal": "2"
                },
                "carrier": {
                    "marketing": "DL",
                    "marketingFlightNumber": 450,
                    "operating": "DL",
                    "operatingFlightNumber": 450,
                    "equipment": {
                        "code": "339",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            },
            {
                "id": 20,
                "dotRating": "7",
                "onTimePerformance": 74,
                "frequency": "***W***",
                "stopCount": 0,
                "eTicketable": true,
                "totalMilesFlown": 2676,
                "elapsedTime": 377,
                "departure": {
                    "airport": "SEA",
                    "city": "SEA",
                    "state": "WA",
                    "country": "US",
                    "time": "14:05:00-08:00"
                },
                "arrival": {
                    "airport": "HNL",
                    "city": "HNL",
                    "state": "HI",
                    "country": "US",
                    "time": "18:22:00-10:00",
                    "terminal": "2"
                },
                "carrier": {
                    "marketing": "DL",
                    "marketingFlightNumber": 450,
                    "operating": "DL",
                    "operatingFlightNumber": 450,
                    "equipment": {
                        "code": "339",
                        "typeForFirstLeg": "W",
                        "typeForLastLeg": "W"
                    }
                }
            }
        ],
        "taxDescs": [
            {
                "id": 1,
                "code": "XA",
                "amount": 460,
                "currency": "JPY",
                "description": "APHIS PASSENGER FEE PASSENGERS",
                "publishedAmount": 3.96,
                "publishedCurrency": "USD",
                "station": "NRT",
                "country": "US"
            },
            {
                "id": 2,
                "code": "AY",
                "amount": 650,
                "currency": "JPY",
                "description": "PASSENGER CIVIL AVIATION SECURITY SERVICE FEE",
                "publishedAmount": 5.60,
                "publishedCurrency": "USD",
                "station": "HNL",
                "country": "US"
            },
            {
                "id": 3,
                "code": "XF",
                "amount": 520,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGES",
                "publishedAmount": 4.50,
                "publishedCurrency": "USD",
                "station": "HNL",
                "country": "US"
            },
            {
                "id": 4,
                "code": "XF",
                "amount": 520,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGES",
                "publishedAmount": 4.50,
                "publishedCurrency": "USD",
                "station": "SEA",
                "country": "US"
            },
            {
                "id": 5,
                "code": "OI",
                "amount": 320,
                "currency": "JPY",
                "description": "PASSENGER SECURITY SERVICE CHARGE",
                "publishedAmount": 320,
                "publishedCurrency": "JPY",
                "station": "KIX",
                "country": "JP"
            },
            {
                "id": 6,
                "code": "HJ2",
                "amount": 440,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS",
                "publishedAmount": 440,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 7,
                "code": "XY2",
                "amount": 810,
                "currency": "JPY",
                "description": "IMMIGRATION USER FEE",
                "publishedAmount": 7.00,
                "publishedCurrency": "USD",
                "station": "NRT",
                "country": "US"
            },
            {
                "id": 8,
                "code": "HJ2",
                "amount": 290,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS",
                "publishedAmount": 290,
                "publishedCurrency": "JPY",
                "station": "KIX",
                "country": "JP"
            },
            {
                "id": 9,
                "code": "YC",
                "amount": 710,
                "currency": "JPY",
                "description": "CUSTOMS USER FEE",
                "publishedAmount": 6.11,
                "publishedCurrency": "USD",
                "station": "HND",
                "country": "US"
            },
            {
                "id": 10,
                "code": "AY",
                "amount": 650,
                "currency": "JPY",
                "description": "PASSENGER CIVIL AVIATION SECURITY SERVICE FEE",
                "publishedAmount": 5.60,
                "publishedCurrency": "USD",
                "station": "KOA",
                "country": "US"
            },
            {
                "id": 11,
                "code": "HJ",
                "amount": 390,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES",
                "publishedAmount": 390,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 12,
                "code": "YQF",
                "amount": 11000,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED FUEL",
                "publishedAmount": 11000,
                "publishedCurrency": "JPY",
                "station": "KIX"
            },
            {
                "id": 13,
                "code": "OI",
                "amount": 530,
                "currency": "JPY",
                "description": "PASSENGER SECURITY SERVICE CHARGE",
                "publishedAmount": 530,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 14,
                "code": "HJ",
                "amount": 440,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES",
                "publishedAmount": 440,
                "publishedCurrency": "JPY",
                "station": "KIX",
                "country": "JP"
            },
            {
                "id": 15,
                "code": "HJ2",
                "amount": 290,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS",
                "publishedAmount": 290,
                "publishedCurrency": "JPY",
                "station": "ITM",
                "country": "JP"
            },
            {
                "id": 16,
                "code": "YQF",
                "amount": 12100,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED FUEL",
                "publishedAmount": 12100,
                "publishedCurrency": "JPY",
                "station": "NRT"
            },
            {
                "id": 17,
                "code": "XA",
                "amount": 460,
                "currency": "JPY",
                "description": "APHIS PASSENGER FEE PASSENGERS",
                "publishedAmount": 3.96,
                "publishedCurrency": "USD",
                "station": "KIX",
                "country": "US"
            },
            {
                "id": 18,
                "code": "HJ2",
                "amount": 260,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE DOMESTIC ARRIVALS",
                "publishedAmount": 260,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            },
            {
                "id": 19,
                "code": "YQI",
                "amount": 300,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED MISC",
                "publishedAmount": 300,
                "publishedCurrency": "JPY",
                "station": "KIX"
            },
            {
                "id": 20,
                "code": "YQF",
                "amount": 11000,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED FUEL",
                "publishedAmount": 11000,
                "publishedCurrency": "JPY",
                "station": "HNL"
            },
            {
                "id": 21,
                "code": "US2",
                "amount": 2270,
                "currency": "JPY",
                "description": "TRANSPORTATION TAX INTERNATIONAL ARRIVAL",
                "publishedAmount": 19.70,
                "publishedCurrency": "USD",
                "station": "NRT",
                "country": "US"
            },
            {
                "id": 22,
                "code": "SW",
                "amount": 2130,
                "currency": "JPY",
                "description": "PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL",
                "publishedAmount": 2130,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 23,
                "code": "HJ",
                "amount": 260,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES",
                "publishedAmount": 260,
                "publishedCurrency": "JPY",
                "station": "ITM",
                "country": "JP"
            },
            {
                "id": 24,
                "code": "TK",
                "amount": 1000,
                "currency": "JPY",
                "description": "INTERNATIONAL TOURIST TAX",
                "publishedAmount": 1000,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 25,
                "code": "YRI",
                "amount": 11000,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED MISC",
                "publishedAmount": 11000,
                "publishedCurrency": "JPY",
                "station": "SEA"
            },
            {
                "id": 26,
                "code": "XA",
                "amount": 460,
                "currency": "JPY",
                "description": "APHIS PASSENGER FEE PASSENGERS",
                "publishedAmount": 3.96,
                "publishedCurrency": "USD",
                "station": "HND",
                "country": "US"
            },
            {
                "id": 27,
                "code": "US2",
                "amount": 2270,
                "currency": "JPY",
                "description": "TRANSPORTATION TAX INTERNATIONAL ARRIVAL",
                "publishedAmount": 19.70,
                "publishedCurrency": "USD",
                "station": "HND",
                "country": "US"
            },
            {
                "id": 28,
                "code": "SW",
                "amount": 2610,
                "currency": "JPY",
                "description": "PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL",
                "publishedAmount": 2610,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            },
            {
                "id": 29,
                "code": "TK",
                "amount": 1000,
                "currency": "JPY",
                "description": "INTERNATIONAL TOURIST TAX",
                "publishedAmount": 1000,
                "publishedCurrency": "JPY",
                "station": "KIX",
                "country": "JP"
            },
            {
                "id": 30,
                "code": "HJ",
                "amount": 290,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES",
                "publishedAmount": 290,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            },
            {
                "id": 31,
                "code": "YQI",
                "amount": 300,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED MISC",
                "publishedAmount": 300,
                "publishedCurrency": "JPY",
                "station": "HNL"
            },
            {
                "id": 32,
                "code": "AY",
                "amount": 650,
                "currency": "JPY",
                "description": "PASSENGER CIVIL AVIATION SECURITY SERVICE FEE",
                "publishedAmount": 5.60,
                "publishedCurrency": "USD",
                "station": "SEA",
                "country": "US"
            },
            {
                "id": 33,
                "code": "SW",
                "amount": 2780,
                "currency": "JPY",
                "description": "PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL",
                "publishedAmount": 2780,
                "publishedCurrency": "JPY",
                "station": "KIX",
                "country": "JP"
            },
            {
                "id": 34,
                "code": "US2",
                "amount": 2270,
                "currency": "JPY",
                "description": "TRANSPORTATION TAX INTERNATIONAL DEPARTURE INCLUDING AK AND HI",
                "publishedAmount": 19.70,
                "publishedCurrency": "USD",
                "station": "HNL",
                "country": "US"
            },
            {
                "id": 35,
                "code": "YC",
                "amount": 710,
                "currency": "JPY",
                "description": "CUSTOMS USER FEE",
                "publishedAmount": 6.11,
                "publishedCurrency": "USD",
                "station": "NRT",
                "country": "US"
            },
            {
                "id": 36,
                "code": "YC",
                "amount": 710,
                "currency": "JPY",
                "description": "CUSTOMS USER FEE",
                "publishedAmount": 6.11,
                "publishedCurrency": "USD",
                "station": "KIX",
                "country": "US"
            },
            {
                "id": 37,
                "code": "YRI",
                "amount": 11000,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED MISC",
                "publishedAmount": 11000,
                "publishedCurrency": "JPY",
                "station": "HND"
            },
            {
                "id": 38,
                "code": "XY2",
                "amount": 810,
                "currency": "JPY",
                "description": "IMMIGRATION USER FEE",
                "publishedAmount": 7.00,
                "publishedCurrency": "USD",
                "station": "KIX",
                "country": "US"
            },
            {
                "id": 39,
                "code": "XY2",
                "amount": 810,
                "currency": "JPY",
                "description": "IMMIGRATION USER FEE",
                "publishedAmount": 7.00,
                "publishedCurrency": "USD",
                "station": "HND",
                "country": "US"
            },
            {
                "id": 40,
                "code": "US2",
                "amount": 2270,
                "currency": "JPY",
                "description": "TRANSPORTATION TAX INTERNATIONAL DEPARTURE INCLUDING AK AND HI",
                "publishedAmount": 19.70,
                "publishedCurrency": "USD",
                "station": "KOA",
                "country": "US"
            },
            {
                "id": 41,
                "code": "TK",
                "amount": 1000,
                "currency": "JPY",
                "description": "INTERNATIONAL TOURIST TAX",
                "publishedAmount": 1000,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            },
            {
                "id": 42,
                "code": "YQF",
                "amount": 12100,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED FUEL",
                "publishedAmount": 12100,
                "publishedCurrency": "JPY",
                "station": "HNL"
            }
        ],
        "taxSummaryDescs": [
            {
                "id": 1,
                "code": "XA",
                "amount": 460,
                "currency": "JPY",
                "description": "APHIS PASSENGER FEE PASSENGERS",
                "publishedAmount": 3.96,
                "publishedCurrency": "USD",
                "station": "NRT",
                "country": "US"
            },
            {
                "id": 2,
                "code": "YQF",
                "amount": 24200,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED FUEL",
                "publishedAmount": 12100,
                "publishedCurrency": "JPY",
                "station": "NRT"
            },
            {
                "id": 3,
                "code": "AY",
                "amount": 650,
                "currency": "JPY",
                "description": "PASSENGER CIVIL AVIATION SECURITY SERVICE FEE",
                "publishedAmount": 5.60,
                "publishedCurrency": "USD",
                "station": "HNL",
                "country": "US"
            },
            {
                "id": 4,
                "code": "YQF",
                "amount": 22600,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED FUEL",
                "publishedAmount": 11000,
                "publishedCurrency": "JPY",
                "station": "KIX"
            },
            {
                "id": 5,
                "code": "HJ",
                "amount": 550,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES",
                "publishedAmount": 290,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            },
            {
                "id": 6,
                "code": "OI",
                "amount": 320,
                "currency": "JPY",
                "description": "PASSENGER SECURITY SERVICE CHARGE",
                "publishedAmount": 320,
                "publishedCurrency": "JPY",
                "station": "KIX",
                "country": "JP"
            },
            {
                "id": 7,
                "code": "XY2",
                "amount": 810,
                "currency": "JPY",
                "description": "IMMIGRATION USER FEE",
                "publishedAmount": 7.00,
                "publishedCurrency": "USD",
                "station": "NRT",
                "country": "US"
            },
            {
                "id": 8,
                "code": "XF",
                "amount": 520,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE",
                "publishedAmount": 4.50,
                "publishedCurrency": "USD",
                "station": "SEA",
                "country": "US"
            },
            {
                "id": 9,
                "code": "US2",
                "amount": 4540,
                "currency": "JPY",
                "description": "TRANSPORTATION TAX INTERNATIONAL DEPARTURE INCLUDING AK AND HI",
                "publishedAmount": 19.70,
                "publishedCurrency": "USD",
                "station": "HNL",
                "country": "US"
            },
            {
                "id": 10,
                "code": "YC",
                "amount": 710,
                "currency": "JPY",
                "description": "CUSTOMS USER FEE",
                "publishedAmount": 6.11,
                "publishedCurrency": "USD",
                "station": "HND",
                "country": "US"
            },
            {
                "id": 11,
                "code": "AY",
                "amount": 650,
                "currency": "JPY",
                "description": "PASSENGER CIVIL AVIATION SECURITY SERVICE FEE",
                "publishedAmount": 5.60,
                "publishedCurrency": "USD",
                "station": "KOA",
                "country": "US"
            },
            {
                "id": 12,
                "code": "OI",
                "amount": 530,
                "currency": "JPY",
                "description": "PASSENGER SECURITY SERVICE CHARGE",
                "publishedAmount": 530,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 13,
                "code": "XF",
                "amount": 520,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE",
                "publishedAmount": 4.50,
                "publishedCurrency": "USD",
                "station": "HNL",
                "country": "US"
            },
            {
                "id": 14,
                "code": "XA",
                "amount": 460,
                "currency": "JPY",
                "description": "APHIS PASSENGER FEE PASSENGERS",
                "publishedAmount": 3.96,
                "publishedCurrency": "USD",
                "station": "KIX",
                "country": "US"
            },
            {
                "id": 15,
                "code": "YRI",
                "amount": 22000,
                "currency": "JPY",
                "description": "SERVICE FEE - CARRIER-IMPOSED MISC",
                "publishedAmount": 11000,
                "publishedCurrency": "JPY",
                "station": "HND"
            },
            {
                "id": 16,
                "code": "HJ",
                "amount": 1100,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES",
                "publishedAmount": 290,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            },
            {
                "id": 17,
                "code": "SW",
                "amount": 2130,
                "currency": "JPY",
                "description": "PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL",
                "publishedAmount": 2130,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 18,
                "code": "US2",
                "amount": 4540,
                "currency": "JPY",
                "description": "TRANSPORTATION TAX INTERNATIONAL DEPARTURE INCLUDING AK AND HI",
                "publishedAmount": 19.70,
                "publishedCurrency": "USD",
                "station": "KOA",
                "country": "US"
            },
            {
                "id": 19,
                "code": "HJ",
                "amount": 1280,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES",
                "publishedAmount": 290,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            },
            {
                "id": 20,
                "code": "TK",
                "amount": 1000,
                "currency": "JPY",
                "description": "INTERNATIONAL TOURIST TAX",
                "publishedAmount": 1000,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 21,
                "code": "XA",
                "amount": 460,
                "currency": "JPY",
                "description": "APHIS PASSENGER FEE PASSENGERS",
                "publishedAmount": 3.96,
                "publishedCurrency": "USD",
                "station": "HND",
                "country": "US"
            },
            {
                "id": 22,
                "code": "SW",
                "amount": 2610,
                "currency": "JPY",
                "description": "PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL",
                "publishedAmount": 2610,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            },
            {
                "id": 23,
                "code": "TK",
                "amount": 1000,
                "currency": "JPY",
                "description": "INTERNATIONAL TOURIST TAX",
                "publishedAmount": 1000,
                "publishedCurrency": "JPY",
                "station": "KIX",
                "country": "JP"
            },
            {
                "id": 24,
                "code": "AY",
                "amount": 1300,
                "currency": "JPY",
                "description": "PASSENGER CIVIL AVIATION SECURITY SERVICE FEE",
                "publishedAmount": 5.60,
                "publishedCurrency": "USD",
                "station": "SEA",
                "country": "US"
            },
            {
                "id": 25,
                "code": "SW",
                "amount": 2780,
                "currency": "JPY",
                "description": "PASSENGER SERVICE FACILITIES CHARGE  INTERNATIONAL",
                "publishedAmount": 2780,
                "publishedCurrency": "JPY",
                "station": "KIX",
                "country": "JP"
            },
            {
                "id": 26,
                "code": "YC",
                "amount": 710,
                "currency": "JPY",
                "description": "CUSTOMS USER FEE",
                "publishedAmount": 6.11,
                "publishedCurrency": "USD",
                "station": "NRT",
                "country": "US"
            },
            {
                "id": 27,
                "code": "YC",
                "amount": 710,
                "currency": "JPY",
                "description": "CUSTOMS USER FEE",
                "publishedAmount": 6.11,
                "publishedCurrency": "USD",
                "station": "KIX",
                "country": "US"
            },
            {
                "id": 28,
                "code": "XY2",
                "amount": 810,
                "currency": "JPY",
                "description": "IMMIGRATION USER FEE",
                "publishedAmount": 7.00,
                "publishedCurrency": "USD",
                "station": "KIX",
                "country": "US"
            },
            {
                "id": 29,
                "code": "HJ",
                "amount": 830,
                "currency": "JPY",
                "description": "PASSENGER FACILITY CHARGE  DOMESTIC DEPARTURES",
                "publishedAmount": 390,
                "publishedCurrency": "JPY",
                "station": "NRT",
                "country": "JP"
            },
            {
                "id": 30,
                "code": "XY2",
                "amount": 810,
                "currency": "JPY",
                "description": "IMMIGRATION USER FEE",
                "publishedAmount": 7.00,
                "publishedCurrency": "USD",
                "station": "HND",
                "country": "US"
            },
            {
                "id": 31,
                "code": "TK",
                "amount": 1000,
                "currency": "JPY",
                "description": "INTERNATIONAL TOURIST TAX",
                "publishedAmount": 1000,
                "publishedCurrency": "JPY",
                "station": "HND",
                "country": "JP"
            }
        ],
        "fareComponentDescs": [
            {
                "id": 1,
                "governingCarrier": "JL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "QNN72DCE",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "mileageSurcharge": 0,
                "mileage": true,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-07",
                "notValidAfter": "2022-03-07",
                "applicablePricingCategories": "1 4 5 6 7 8 9 10 12 15 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XAP",
                "fareTariff": "3",
                "fareRule": "5562",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 2,
                "governingCarrier": "JL",
                "fareAmount": 349.97,
                "fareCurrency": "JPY",
                "fareBasisCode": "SNN72DCE",
                "farePassengerType": "ADT",
                "publishedFareAmount": 81000,
                "mileageSurcharge": 0,
                "mileage": true,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-04",
                "notValidAfter": "2022-03-04",
                "applicablePricingCategories": "1 4 5 6 7 8 9 10 12 15 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XAP",
                "fareTariff": "3",
                "fareRule": "5562",
                "segments": [
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 3,
                "governingCarrier": "JL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "QNN72DCE",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "mileageSurcharge": 0,
                "mileage": true,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-05",
                "notValidAfter": "2022-03-05",
                "applicablePricingCategories": "1 4 5 6 7 8 9 10 12 15 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XAP",
                "fareTariff": "3",
                "fareRule": "5562",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 4,
                "governingCarrier": "HA",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "LLXIRTMJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "directionality": "FROM",
                "direction": "PA",
                "notValidAfter": "2022-05-01",
                "applicablePricingCategories": "1 2 3 4 5 6 7 8 10 11 12 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XEX",
                "fareTariff": "3",
                "fareRule": "JM02",
                "segments": [
                    {
                        "segment": {
                            "stopover": true
                        }
                    }
                ]
            },
            {
                "id": 5,
                "governingCarrier": "DL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "VNE52GBJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "directionality": "FROM",
                "direction": "PA",
                "notValidBefore": "2022-02-27",
                "notValidAfter": "2022-02-27",
                "applicablePricingCategories": "2 3 4 5 6 7 8 9 10 11 12 13 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "ERU",
                "fareTariff": "3",
                "fareRule": "4BTN",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {
                            "stopover": true
                        }
                    }
                ]
            },
            {
                "id": 6,
                "governingCarrier": "JL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "QNN72DCE",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "mileageSurcharge": 0,
                "mileage": true,
                "directionality": "FROM",
                "direction": "PA",
                "notValidBefore": "2022-03-03",
                "notValidAfter": "2022-03-03",
                "applicablePricingCategories": "1 4 5 6 7 8 9 10 12 15 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XAP",
                "fareTariff": "3",
                "fareRule": "5562",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {
                            "stopover": true
                        }
                    }
                ]
            },
            {
                "id": 7,
                "governingCarrier": "HA",
                "fareAmount": 575.51,
                "fareCurrency": "JPY",
                "fareBasisCode": "NLXIODMJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 66600,
                "directionality": "FROM",
                "direction": "PA",
                "notValidAfter": "2023-03-03",
                "applicablePricingCategories": "1 2 3 5 6 7 8 10 11 12 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XEX",
                "fareTariff": "3",
                "fareRule": "JM01",
                "segments": [
                    {
                        "segment": {
                            "surcharges": [
                                {
                                    "amount": 129.62,
                                    "currency": "NUC",
                                    "description": "PEAK TRAVEL TIME",
                                    "type": "D"
                                }
                            ]
                        }
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 8,
                "governingCarrier": "DL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "VNE52GBJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-04",
                "notValidAfter": "2022-03-04",
                "applicablePricingCategories": "2 3 4 5 6 7 8 9 10 11 12 13 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "ERU",
                "fareTariff": "3",
                "fareRule": "4BTN",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 9,
                "governingCarrier": "JL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "QNN72DCE",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "mileageSurcharge": 0,
                "mileage": true,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-03",
                "notValidAfter": "2022-03-03",
                "applicablePricingCategories": "1 4 5 6 7 8 9 10 12 15 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XAP",
                "fareTariff": "3",
                "fareRule": "5562",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 10,
                "governingCarrier": "HA",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "LLXIRTMJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-03",
                "notValidAfter": "2022-05-01",
                "applicablePricingCategories": "1 2 3 4 5 6 7 8 10 11 12 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XEX",
                "fareTariff": "3",
                "fareRule": "JM02",
                "segments": [
                    {
                        "segment": {
                            "surcharges": [
                                {
                                    "amount": 30.24,
                                    "currency": "NUC",
                                    "description": "MISCELLANEOUS/OTHER",
                                    "type": "Q"
                                }
                            ]
                        }
                    }
                ]
            },
            {
                "id": 11,
                "governingCarrier": "DL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "VNE52GBJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-09",
                "notValidAfter": "2022-03-09",
                "applicablePricingCategories": "2 3 4 5 6 7 8 9 10 11 12 13 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "ERU",
                "fareTariff": "3",
                "fareRule": "4BTN",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 12,
                "governingCarrier": "JL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "QNN72DCE",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "mileageSurcharge": 0,
                "mileage": true,
                "directionality": "FROM",
                "direction": "PA",
                "notValidBefore": "2022-03-01",
                "notValidAfter": "2022-03-01",
                "applicablePricingCategories": "1 4 5 6 7 8 9 10 12 15 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XAP",
                "fareTariff": "3",
                "fareRule": "5562",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {
                            "stopover": true
                        }
                    }
                ]
            },
            {
                "id": 13,
                "governingCarrier": "DL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "VNE52GBJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-05",
                "notValidAfter": "2022-03-05",
                "applicablePricingCategories": "2 3 4 5 6 7 8 9 10 11 12 13 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "ERU",
                "fareTariff": "3",
                "fareRule": "4BTN",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 14,
                "governingCarrier": "JL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "QNN72DCE",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "mileageSurcharge": 0,
                "mileage": true,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-06",
                "notValidAfter": "2022-03-06",
                "applicablePricingCategories": "1 4 5 6 7 8 9 10 12 15 16 18 23",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XAP",
                "fareTariff": "3",
                "fareRule": "5562",
                "segments": [
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 15,
                "governingCarrier": "DL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "VNE52GBJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-03",
                "notValidAfter": "2022-03-03",
                "applicablePricingCategories": "2 3 4 5 6 7 8 9 10 11 12 13 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "ERU",
                "fareTariff": "3",
                "fareRule": "4BTN",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 16,
                "governingCarrier": "DL",
                "fareAmount": 306.76,
                "fareCurrency": "JPY",
                "fareBasisCode": "VNE52GBJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 71000,
                "directionality": "FROM",
                "direction": "PA",
                "notValidBefore": "2022-03-02",
                "notValidAfter": "2022-03-02",
                "applicablePricingCategories": "2 3 4 5 6 7 8 9 10 11 12 13 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "ERU",
                "fareTariff": "3",
                "fareRule": "4BTN",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {
                            "stopover": true
                        }
                    }
                ]
            },
            {
                "id": 17,
                "governingCarrier": "DL",
                "fareAmount": 324.05,
                "fareCurrency": "JPY",
                "fareBasisCode": "XNE52GBJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 75000,
                "directionality": "TO",
                "direction": "PA",
                "notValidBefore": "2022-03-07",
                "notValidAfter": "2022-03-07",
                "applicablePricingCategories": "2 3 4 5 6 7 8 9 10 11 12 13 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "ERU",
                "fareTariff": "3",
                "fareRule": "4BTN",
                "segments": [
                    {
                        "segment": {}
                    },
                    {
                        "segment": {}
                    }
                ]
            },
            {
                "id": 18,
                "governingCarrier": "HA",
                "fareAmount": 575.51,
                "fareCurrency": "JPY",
                "fareBasisCode": "NLXIODMJ",
                "farePassengerType": "ADT",
                "publishedFareAmount": 66600,
                "directionality": "TO",
                "direction": "PA",
                "notValidAfter": "2023-03-03",
                "applicablePricingCategories": "1 2 3 5 6 7 8 10 11 12 16 18",
                "vendorCode": "ATP",
                "fareTypeBitmap": "00",
                "fareType": "XEX",
                "fareTariff": "3",
                "fareRule": "JM01",
                "segments": [
                    {
                        "segment": {
                            "surcharges": [
                                {
                                    "amount": 43.20,
                                    "currency": "NUC",
                                    "description": "MISCELLANEOUS/OTHER",
                                    "type": "Q"
                                }
                            ]
                        }
                    }
                ]
            }
        ],
        "validatingCarrierDescs": [
            {
                "id": 1,
                "settlementMethod": "BSP",
                "newVcxProcess": true,
                "default": {
                    "code": "HA"
                }
            },
            {
                "id": 2,
                "settlementMethod": "BSP",
                "newVcxProcess": true,
                "default": {
                    "code": "DL"
                }
            },
            {
                "id": 3,
                "settlementMethod": "BSP",
                "newVcxProcess": true,
                "default": {
                    "code": "JL"
                }
            }
        ],
        "baggageAllowanceDescs": [
            {
                "id": 1,
                "pieceCount": 2
            },
            {
                "id": 2,
                "pieceCount": 1
            },
            {
                "id": 3,
                "pieceCount": 2
            }
        ],
        "legDescs": [
            {
                "id": 1,
                "elapsedTime": 659,
                "schedules": [
                    {
                        "ref": 5
                    },
                    {
                        "ref": 3
                    }
                ]
            },
            {
                "id": 2,
                "elapsedTime": 405,
                "schedules": [
                    {
                        "ref": 18
                    }
                ]
            },
            {
                "id": 3,
                "elapsedTime": 590,
                "schedules": [
                    {
                        "ref": 16
                    }
                ]
            },
            {
                "id": 4,
                "elapsedTime": 775,
                "schedules": [
                    {
                        "ref": 14
                    },
                    {
                        "ref": 15
                    }
                ]
            },
            {
                "id": 5,
                "elapsedTime": 1305,
                "schedules": [
                    {
                        "ref": 7
                    },
                    {
                        "ref": 13,
                        "departureDateAdjustment": 1
                    }
                ]
            },
            {
                "id": 6,
                "elapsedTime": 720,
                "schedules": [
                    {
                        "ref": 8
                    },
                    {
                        "ref": 15
                    }
                ]
            },
            {
                "id": 7,
                "elapsedTime": 1305,
                "schedules": [
                    {
                        "ref": 9
                    },
                    {
                        "ref": 13,
                        "departureDateAdjustment": 1
                    }
                ]
            },
            {
                "id": 8,
                "elapsedTime": 595,
                "schedules": [
                    {
                        "ref": 2
                    }
                ]
            },
            {
                "id": 9,
                "elapsedTime": 600,
                "schedules": [
                    {
                        "ref": 4
                    }
                ]
            },
            {
                "id": 10,
                "elapsedTime": 1450,
                "schedules": [
                    {
                        "ref": 17
                    },
                    {
                        "ref": 11,
                        "departureDateAdjustment": 2
                    }
                ]
            },
            {
                "id": 11,
                "elapsedTime": 1202,
                "schedules": [
                    {
                        "ref": 6
                    },
                    {
                        "ref": 20
                    }
                ]
            },
            {
                "id": 12,
                "elapsedTime": 855,
                "schedules": [
                    {
                        "ref": 17
                    },
                    {
                        "ref": 12,
                        "departureDateAdjustment": 1
                    }
                ]
            },
            {
                "id": 13,
                "elapsedTime": 1270,
                "schedules": [
                    {
                        "ref": 1
                    },
                    {
                        "ref": 13,
                        "departureDateAdjustment": 1
                    }
                ]
            },
            {
                "id": 14,
                "elapsedTime": 1305,
                "schedules": [
                    {
                        "ref": 6
                    },
                    {
                        "ref": 19
                    }
                ]
            },
            {
                "id": 15,
                "elapsedTime": 555,
                "schedules": [
                    {
                        "ref": 10
                    }
                ]
            }
        ],
        "itineraryGroups": [
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-02-27",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-03",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 14
                            },
                            {
                                "ref": 7
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 5,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 15,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 104950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 104950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-02-27",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-04",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 14
                            },
                            {
                                "ref": 5
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 5,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 8,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 104950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 104950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-02-27",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-05",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 14
                            },
                            {
                                "ref": 7
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 5,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 13,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 104950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 104950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-02-27",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-07",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 14
                            },
                            {
                                "ref": 13
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 5,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 17,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 106950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 73000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 73000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 630.81,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 106950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 73000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 630.81,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 73000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-02-27",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-09",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 14
                            },
                            {
                                "ref": 13
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 5,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 11,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 104950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 104950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-01",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-03",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 4
                            },
                            {
                                "ref": 10
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "JL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "JL JL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 12,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Y",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 9,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Y",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 19
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 23
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 18
                                                    },
                                                    {
                                                        "ref": 5
                                                    },
                                                    {
                                                        "ref": 33
                                                    },
                                                    {
                                                        "ref": 29
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 38
                                                    },
                                                    {
                                                        "ref": 36
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 16
                                                    },
                                                    {
                                                        "ref": 6
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 14
                                                    },
                                                    {
                                                        "ref": 3
                                                    },
                                                    {
                                                        "ref": 4
                                                    },
                                                    {
                                                        "ref": 23
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 106490,
                                                    "totalTaxAmount": 35490,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 106490,
                                        "totalTaxAmount": 35490,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 3
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-01",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-04",
                            "departureLocation": "HNL",
                            "arrivalLocation": "NRT"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 4
                            },
                            {
                                "ref": 15
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "JL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "JL JL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 12,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Y",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 2,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "S",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "M",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 19
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 18
                                                    },
                                                    {
                                                        "ref": 5
                                                    },
                                                    {
                                                        "ref": 33
                                                    },
                                                    {
                                                        "ref": 29
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 38
                                                    },
                                                    {
                                                        "ref": 36
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 5
                                                    },
                                                    {
                                                        "ref": 6
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 14
                                                    },
                                                    {
                                                        "ref": 3
                                                    },
                                                    {
                                                        "ref": 4
                                                    },
                                                    {
                                                        "ref": 23
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 110940,
                                                    "totalTaxAmount": 34940,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 76000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 76000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 656.73,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 110940,
                                        "totalTaxAmount": 34940,
                                        "currency": "JPY",
                                        "baseFareAmount": 76000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 656.73,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 76000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 3
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-01",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-05",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 4
                            },
                            {
                                "ref": 12
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "JL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "JL JL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 12,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Y",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 3,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Y",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 19
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 14
                                                    },
                                                    {
                                                        "ref": 8
                                                    },
                                                    {
                                                        "ref": 18
                                                    },
                                                    {
                                                        "ref": 5
                                                    },
                                                    {
                                                        "ref": 33
                                                    },
                                                    {
                                                        "ref": 29
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 38
                                                    },
                                                    {
                                                        "ref": 36
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 19
                                                    },
                                                    {
                                                        "ref": 6
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 14
                                                    },
                                                    {
                                                        "ref": 3
                                                    },
                                                    {
                                                        "ref": 4
                                                    },
                                                    {
                                                        "ref": 23
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 106670,
                                                    "totalTaxAmount": 35670,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 106670,
                                        "totalTaxAmount": 35670,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 3
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-01",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-06",
                            "departureLocation": "HNL",
                            "arrivalLocation": "NRT"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 4
                            },
                            {
                                "ref": 9
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "JL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "JL JL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 12,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Y",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 14,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 19
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 18
                                                    },
                                                    {
                                                        "ref": 5
                                                    },
                                                    {
                                                        "ref": 33
                                                    },
                                                    {
                                                        "ref": 29
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 38
                                                    },
                                                    {
                                                        "ref": 36
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 5
                                                    },
                                                    {
                                                        "ref": 6
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 14
                                                    },
                                                    {
                                                        "ref": 3
                                                    },
                                                    {
                                                        "ref": 4
                                                    },
                                                    {
                                                        "ref": 23
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 105940,
                                                    "totalTaxAmount": 34940,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 105940,
                                        "totalTaxAmount": 34940,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 3
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-01",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-07",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 4
                            },
                            {
                                "ref": 12
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "JL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "JL JL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 12,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Y",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 1,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Y",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 19
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 14
                                                    },
                                                    {
                                                        "ref": 8
                                                    },
                                                    {
                                                        "ref": 18
                                                    },
                                                    {
                                                        "ref": 5
                                                    },
                                                    {
                                                        "ref": 33
                                                    },
                                                    {
                                                        "ref": 29
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 38
                                                    },
                                                    {
                                                        "ref": 36
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 19
                                                    },
                                                    {
                                                        "ref": 6
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 14
                                                    },
                                                    {
                                                        "ref": 3
                                                    },
                                                    {
                                                        "ref": 4
                                                    },
                                                    {
                                                        "ref": 23
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 106670,
                                                    "totalTaxAmount": 35670,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 106670,
                                        "totalTaxAmount": 35670,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 3
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-01",
                            "departureLocation": "NRT",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-08",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 2
                            },
                            {
                                "ref": 3
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "HA",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-10",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "HA HA",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 4,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "L",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "MM",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 10,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "L",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "MM",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 16
                                                    },
                                                    {
                                                        "ref": 42
                                                    },
                                                    {
                                                        "ref": 13
                                                    },
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 1
                                                    },
                                                    {
                                                        "ref": 7
                                                    },
                                                    {
                                                        "ref": 35
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 7
                                                    },
                                                    {
                                                        "ref": 1
                                                    },
                                                    {
                                                        "ref": 3
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 110050,
                                                    "totalTaxAmount": 35550,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 74500,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 74500,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 643.76,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "HA",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 1
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "HA",
                                                        "segments": [
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 1
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 110050,
                                        "totalTaxAmount": 35550,
                                        "currency": "JPY",
                                        "baseFareAmount": 74500,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 643.76,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 74500,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 1
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-01",
                            "departureLocation": "NRT",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-09",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 2
                            },
                            {
                                "ref": 3
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "HA",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-10",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "HA HA",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 4,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "L",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "MM",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 10,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "L",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "MM",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 16
                                                    },
                                                    {
                                                        "ref": 42
                                                    },
                                                    {
                                                        "ref": 13
                                                    },
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 1
                                                    },
                                                    {
                                                        "ref": 7
                                                    },
                                                    {
                                                        "ref": 35
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 7
                                                    },
                                                    {
                                                        "ref": 1
                                                    },
                                                    {
                                                        "ref": 3
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 110050,
                                                    "totalTaxAmount": 35550,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 74500,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 74500,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 643.76,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "HA",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 1
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "HA",
                                                        "segments": [
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 1
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 110050,
                                        "totalTaxAmount": 35550,
                                        "currency": "JPY",
                                        "baseFareAmount": 74500,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 643.76,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 74500,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 1
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-02",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-03",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 11
                            },
                            {
                                "ref": 7
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 16,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 15,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 104950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 104950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-02",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-04",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 11
                            },
                            {
                                "ref": 5
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 16,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 8,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 104950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 104950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-02",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-05",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 11
                            },
                            {
                                "ref": 7
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 16,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 13,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 104950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 104950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-02",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-07",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 11
                            },
                            {
                                "ref": 13
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 16,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 17,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 106950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 73000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 73000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 630.81,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 106950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 73000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 630.81,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 73000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-02",
                            "departureLocation": "HND",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-09",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 11
                            },
                            {
                                "ref": 13
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "DL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "19:17",
                                    "governingCarriers": "DL DL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 16,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 11,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "V",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "E",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "B",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 37
                                                    },
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 41
                                                    },
                                                    {
                                                        "ref": 32
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 39
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 4
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 30
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 15
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 8
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 104950,
                                                    "totalTaxAmount": 33950,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "DL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            },
                                                            {
                                                                "id": 3
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 2
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 104950,
                                        "totalTaxAmount": 33950,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 2
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-03",
                            "departureLocation": "NRT",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-03",
                            "departureLocation": "HNL",
                            "arrivalLocation": "HND"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 1
                            },
                            {
                                "ref": 8
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "HA",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-10",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "HA HA",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 7,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "N",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "M",
                                                                    "seatsAvailable": 4
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "N",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 18,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "N",
                                                                    "cabinCode": "Y",
                                                                    "mealCode": "MM",
                                                                    "seatsAvailable": 9,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 16
                                                    },
                                                    {
                                                        "ref": 42
                                                    },
                                                    {
                                                        "ref": 13
                                                    },
                                                    {
                                                        "ref": 22
                                                    },
                                                    {
                                                        "ref": 24
                                                    },
                                                    {
                                                        "ref": 10
                                                    },
                                                    {
                                                        "ref": 40
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 1
                                                    },
                                                    {
                                                        "ref": 7
                                                    },
                                                    {
                                                        "ref": 35
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 18
                                                    },
                                                    {
                                                        "ref": 26
                                                    },
                                                    {
                                                        "ref": 7
                                                    },
                                                    {
                                                        "ref": 1
                                                    },
                                                    {
                                                        "ref": 11
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 188750,
                                                    "totalTaxAmount": 35550,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 153200,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 153200,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 1323.84,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "HA",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 1
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "HA",
                                                        "segments": [
                                                            {
                                                                "id": 1
                                                            },
                                                            {
                                                                "id": 2
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 1
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 188750,
                                        "totalTaxAmount": 35550,
                                        "currency": "JPY",
                                        "baseFareAmount": 153200,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 1323.84,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 153200,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 1
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            },
            {
                "groupDescription": {
                    "legDescriptions": [
                        {
                            "departureDate": "2022-03-03",
                            "departureLocation": "NRT",
                            "arrivalLocation": "HNL"
                        },
                        {
                            "departureDate": "2022-03-06",
                            "departureLocation": "HNL",
                            "arrivalLocation": "NRT"
                        }
                    ]
                },
                "itineraries": [
                    {
                        "id": 1,
                        "pricingSource": "ADMF1",
                        "legs": [
                            {
                                "ref": 6
                            },
                            {
                                "ref": 9
                            }
                        ],
                        "pricingInformation": [
                            {
                                "pricingSubsource": "MIP",
                                "fare": {
                                    "validatingCarrierCode": "JL",
                                    "vita": true,
                                    "eTicketable": true,
                                    "lastTicketDate": "2022-02-08",
                                    "lastTicketTime": "23:59",
                                    "governingCarriers": "JL JL",
                                    "passengerInfoList": [
                                        {
                                            "passengerInfo": {
                                                "passengerType": "ADT",
                                                "passengerNumber": 1,
                                                "nonRefundable": true,
                                                "fareComponents": [
                                                    {
                                                        "ref": 6,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "V",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 9
                                                                }
                                                            },
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    },
                                                    {
                                                        "ref": 14,
                                                        "segments": [
                                                            {
                                                                "segment": {
                                                                    "bookingCode": "Q",
                                                                    "cabinCode": "Y",
                                                                    "seatsAvailable": 4,
                                                                    "availabilityBreak": true
                                                                }
                                                            }
                                                        ]
                                                    }
                                                ],
                                                "taxes": [
                                                    {
                                                        "ref": 12
                                                    },
                                                    {
                                                        "ref": 20
                                                    },
                                                    {
                                                        "ref": 19
                                                    },
                                                    {
                                                        "ref": 31
                                                    },
                                                    {
                                                        "ref": 11
                                                    },
                                                    {
                                                        "ref": 6
                                                    },
                                                    {
                                                        "ref": 5
                                                    },
                                                    {
                                                        "ref": 33
                                                    },
                                                    {
                                                        "ref": 29
                                                    },
                                                    {
                                                        "ref": 2
                                                    },
                                                    {
                                                        "ref": 34
                                                    },
                                                    {
                                                        "ref": 21
                                                    },
                                                    {
                                                        "ref": 17
                                                    },
                                                    {
                                                        "ref": 38
                                                    },
                                                    {
                                                        "ref": 36
                                                    },
                                                    {
                                                        "ref": 3
                                                    }
                                                ],
                                                "taxSummaries": [
                                                    {
                                                        "ref": 25
                                                    },
                                                    {
                                                        "ref": 29
                                                    },
                                                    {
                                                        "ref": 6
                                                    },
                                                    {
                                                        "ref": 9
                                                    },
                                                    {
                                                        "ref": 27
                                                    },
                                                    {
                                                        "ref": 28
                                                    },
                                                    {
                                                        "ref": 14
                                                    },
                                                    {
                                                        "ref": 3
                                                    },
                                                    {
                                                        "ref": 4
                                                    },
                                                    {
                                                        "ref": 23
                                                    },
                                                    {
                                                        "ref": 13
                                                    }
                                                ],
                                                "currencyConversion": {
                                                    "from": "JPY",
                                                    "to": "JPY",
                                                    "exchangeRateUsed": 1
                                                },
                                                "passengerTotalFare": {
                                                    "totalFare": 106220,
                                                    "totalTaxAmount": 35220,
                                                    "currency": "JPY",
                                                    "baseFareAmount": 71000,
                                                    "baseFareCurrency": "JPY",
                                                    "equivalentAmount": 71000,
                                                    "equivalentCurrency": "JPY",
                                                    "constructionAmount": 613.52,
                                                    "constructionCurrency": "NUC",
                                                    "commissionPercentage": 0,
                                                    "commissionAmount": 0,
                                                    "exchangeRateOne": 115.722029
                                                },
                                                "baggageInformation": [
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 0
                                                            },
                                                            {
                                                                "id": 1
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    },
                                                    {
                                                        "provisionType": "A",
                                                        "airlineCode": "JL",
                                                        "segments": [
                                                            {
                                                                "id": 2
                                                            }
                                                        ],
                                                        "allowance": {
                                                            "ref": 3
                                                        }
                                                    }
                                                ]
                                            }
                                        }
                                    ],
                                    "totalFare": {
                                        "totalPrice": 106220,
                                        "totalTaxAmount": 35220,
                                        "currency": "JPY",
                                        "baseFareAmount": 71000,
                                        "baseFareCurrency": "JPY",
                                        "constructionAmount": 613.52,
                                        "constructionCurrency": "NUC",
                                        "equivalentAmount": 71000,
                                        "equivalentCurrency": "JPY"
                                    },
                                    "validatingCarriers": [
                                        {
                                            "ref": 3
                                        }
                                    ]
                                }
                            }
                        ]
                    }
                ]
            }
        ]
    }
}