<?xml version="1.0" encoding="utf-8"?>
<HmsMediaItem>
  <MediaType>3</MediaType>
  <ClassID>51</ClassID>
  <ItemID>d1f1963f-a470-45fc-8501-66ef925dabdd</ItemID>
  <ItemPath>Hdgo</ItemPath>
  <ParentID>234DF17B-418C-4FDC-9DFE-CD0C586D2E76</ParentID>
  <Properties>
    <Property>
      <ID>4</ID>
      <Value>Hdgo</Value>
    </Property>
    <Property>
      <ID>515</ID>
      <Value>1</Value>
    </Property>
    <Property>
      <ID>700</ID>
      <Value>0</Value>
    </Property>
    <Property>
      <ID>701</ID>
      <Value>-1</Value>
    </Property>
    <Property>
      <ID>702</ID>
      <Value>-1</Value>
    </Property>
    <Property>
      <ID>517</ID>
      <Value>578-720,722-1080,482-576,402-480,322-400,202-320,0-200</Value>
    </Property>
    <Property>
      <ID>518</ID>
      <Value>0</Value>
    </Property>
    <Property>
      <ID>512</ID>
      <Value>0</Value>
    </Property>
    <Property>
      <ID>532</ID>
      <Value>1</Value>
    </Property>
    <Property>
      <ID>553</ID>
      <Value>1</Value>
    </Property>
    <Property>
      <ID>522</ID>
      <Value>0</Value>
    </Property>
    <Property>
      <ID>570</ID>
      <Value>1</Value>
    </Property>
    <Property>
      <ID>245</ID>
      <Value>d1f1963f-a470-45fc-8501-66ef925dabdd</Value>
    </Property>
    <Property>
      <ID>93</ID>
      <Value>43158,0775340509</Value>
    </Property>
    <Property>
      <ID>571</ID>
      <Value>// 2018.03.24
///////////////////////  Создание структуры подкаста  /////////////////////////
#define mpiJsonInfo 40032 // Идентификатор для хранения json информации о фильме

///////////////////////////////////////////////////////////////////////////////
//               Г Л О Б А Л Ь Н Ы Е   П Е Р Е М Е Н Н Ы Е                   //
THmsScriptMediaItem Podcast = GetRoot(); // Главная папка подкаста
int       gnTotalItems = 0; 
TDateTime gStart       = Now;
string    gsAPIUrl     = "http://api.lostcut.net/hdgo/";
string    gsToken      = "Q298nQsLY481iJzUPrlwVnRh6EqC8Ctd";

///////////////////////////////////////////////////////////////////////////////
//                             Ф У Н К Ц И И                                 //

///////////////////////////////////////////////////////////////////////////////
// Установка переменной Podcast: поиск родительской папки, содержащий скрипт
THmsScriptMediaItem GetRoot() {
  Podcast = FolderItem; // Начиная с текущего элемента, ищется создержащий срипт
  while ((Trim(Podcast[550])==&apos;&apos;) &amp;&amp; (Podcast[532]!=&apos;1&apos;) &amp;&amp; (Podcast.ItemParent!=nil)) 
    Podcast=Podcast.ItemParent;
  return Podcast;
}

///////////////////////////////////////////////////////////////////////////////
// Создание папки или подкаста
THmsScriptMediaItem CreateFolder(THmsScriptMediaItem Parent, string sName, string sLink, string sParams=&apos;&apos;, bool bForceFolder=false, bool bCreateStruct=false) {
  THmsScriptMediaItem Item = Parent.AddFolder(sLink, bForceFolder); // Создаём папку с указанной ссылкой
  Item[mpiTitle     ] = sName; // Присваиваем наименование
  Item[mpiCreateDate] = IncTime(gStart,0,-gnTotalItems,0,0); gnTotalItems++;
  Item[mpiPodcastParameters] = sParams;
  Item[mpiFolderSortOrder  ] = "-mpCreateDate";
  if (bCreateStruct) Item[570] = 2;
  return Item;
}

///////////////////////////////////////////////////////////////////////////////
// Функция создания динамической папки с указанным скриптом
THmsScriptMediaItem CreateDynamicItem(THmsScriptMediaItem prntItem, string sTitle, string sLink, string &amp;sScript=&apos;&apos;) {
  THmsScriptMediaItem Folder = prntItem.AddFolder(sLink, false, 32);
  Folder[mpiTitle     ] = sTitle;
  Folder[mpiCreateDate] = VarToStr(IncTime(Now,0,-prntItem.ChildCount,0,0));
  Folder[200] = 5;           // mpiFolderType
  Folder[500] = sScript;     // mpiDynamicScript
  Folder[501] = &apos;C++Script&apos;; // mpiDynamicSyntaxType
  Folder[mpiFolderSortOrder] = -mpiCreateDate;
  return Folder;
}

///////////////////////////////////////////////////////////////////////////////
// Замена в тексте загруженного скрипта значения текстовой переменной
void ReplaceVarValue(string &amp;sText, string sVarName, string sNewVal) {
  string sVal, sVal2;
  if (HmsRegExMatch2("("+sVarName+"\\s*?=.*?&apos;;)", sText, sVal, sVal2)) {
    HmsRegExMatch(sVarName+"\\s*?=\\s*?&apos;(.*)&apos;", sVal, sVal2);
    sText = ReplaceStr(sText, sVal, ReplaceStr(sVal , sVal2, sNewVal));
  }
}

///////////////////////////////////////////////////////////////////////////////
// Создание папки ПОИСК (с загрузкой скрипта с форума homemediaserver.ru)
void CreateSearchFolder(THmsScriptMediaItem Parent, string sTitle) {
  string sScript=&apos;&apos;, sLink, sHtml, sRE, sVal; THmsScriptMediaItem Folder;
  
  // Да да, загружаем скрипт с сайта форума HMS
  sHtml = HmsUtf8Decode(HmsDownloadURL(&apos;http://homemediaserver.ru/forum/viewtopic.php?f=15&amp;t=2793&amp;p=17395#p17395&apos;, &apos;&apos;, true));
  HmsRegExMatch(&apos;BeginDynamicSearchScript\\*/(.*?)/\\*EndDynamicSearchScript&apos;, sHtml, sScript, 1, PCRE_SINGLELINE);
  sScript = HmsHtmlToText(sScript, 1251);
  sScript = ReplaceStr(sScript, #160, &apos; &apos;);
  
  // И меняем значения переменных на свои
  ReplaceVarValue(sScript, &apos;gsSuggestQuery&apos;  , gsAPIUrl+&apos;videos?serials=2&amp;q=&apos;);
  ReplaceVarValue(sScript, &apos;gsSuggestRegExpr&apos;, &apos;"name":"(.*?)"&apos;);
  ReplaceVarValue(sScript, &apos;gsSuggestMethod&apos; , &apos;GET&apos;);
  //sScript = ReplaceStr(sScript, &apos;gnSuggestNoUTFEnc = 0&apos;, &apos;gnSuggestNoUTFEnc = 1&apos;);
  
  Folder = Parent.AddFolder(sTitle, true);
  Folder[mpiCreateDate     ] = VarToStr(IncTime(gStart,0,-gnTotalItems,0,0));
  Folder[mpiFolderSortOrder] = "-mpCreateDate";
  gnTotalItems++;
  
  CreateDynamicItem(Folder, &apos;"Набрать текст"&apos;, &apos;-SearchCommands&apos;, sScript);
  
  CreateFolder(Folder, &apos;Режиссёры&apos; , &apos;directors&apos; , &apos;&apos;, true);
  CreateFolder(Folder, &apos;Актёры&apos;    , &apos;actors&apos;    , &apos;&apos;, true);
  CreateFolder(Folder, &apos;Продюсеры&apos; , &apos;producers&apos; , &apos;&apos;, true);
}

///////////////////////////////////////////////////////////////////////////////
// Получение название группы из имени
string GetGroupName(string sName) {
  string sGrp = &apos;#&apos;;
  if (HmsRegExMatch(&apos;([A-ZА-Я0-9])&apos;, sName, sGrp, 1, PCRE_CASELESS)) sGrp = Uppercase(sGrp);
  if (HmsRegExMatch(&apos;[0-9]&apos;, sGrp, sGrp)) sGrp = &apos;#&apos;;
  if (HmsRegExMatch(&apos;[A-Z]&apos;, sGrp, sGrp)) sGrp = &apos;A..Z&apos;;
  return sGrp;
}

///////////////////////////////////////////////////////////////////////////////
// Создание папки с категориями
void CreateCategories(THmsScriptMediaItem Parent, string sName, string sLink, string sParams=&apos;&apos;) {
  string sData, sVal, sRes; int i; TJsonObject JSON, VIDEO; TJsonArray JARRAY;
  THmsScriptMediaItem Folder, Item; string sGrp=&apos;&apos;, sSort;
  
  Folder = CreateFolder(Parent, sName, sLink, sParams, true);
  HmsRegExMatch(&apos;group=(\\w+)&apos;, sParams, sSort);
  switch (sSort) {
    case &apos;year&apos;: { sSort="-mpFileName"  ; }
    case &apos;alph&apos;: { sSort="mpFileName"   ; }
    default    : { sSort="-mpCreateDate"; }
  }
  
  if      (Pos(&apos;category&apos;, sLink)&gt;0) sRes = &apos;categories&apos;;
  else if (Pos(&apos;country&apos; , sLink)&gt;0) sRes = &apos;countries&apos;;
  else return;
  
  if (Pos(&apos;serials=1&apos;, sLink)&gt;0) sRes += &apos;?serials=1&apos;;
  
  sData = HmsDownloadURL(gsAPIUrl+sRes, "Accept-Encoding: gzip, deflate", true);
  sData = HmsUtf8Decode(sData);
  JSON  = TJsonObject.Create();
  try {
    JSON.LoadFromString(sData);
    JARRAY = JSON.AsArray; if (JARRAY==nil) return;
    for (i=0; i&lt;JARRAY.Length; i++) {
      VIDEO = JARRAY[i];
      Item = CreateFolder(Folder, VIDEO.S[&apos;name&apos;], sLink+&apos;=&apos;+VIDEO.S[&apos;id&apos;]);
      Item[mpiFolderSortOrder] = sSort;
    }
  } finally { JSON.Free; }
  
}

///////////////////////////////////////////////////////////////////////////////
// Создание папки с подкастами годов
void CreateYears(THmsScriptMediaItem Parent, string sName, string sLink) {
  int i, nCurrentYear, nCurrentMonth, nCurrentDay; THmsScriptMediaItem Folder;
  
  Folder = CreateFolder(Parent, sName, sLink, &apos;&apos;, true);
  // Узнаём начальное значение года, с которого стоит начинать создавать список
  DecodeDate(Now, nCurrentYear, nCurrentMonth, nCurrentDay);
  if (nCurrentMonth &gt; 10) nCurrentYear++;
  
  for(i=nCurrentYear; i &gt;= 1995; i--) {
    CreateFolder(Folder, Str(i), sLink+&apos;=&apos;+Str(i));
  }
}

///////////////////////////////////////////////////////////////////////////////
// Удаление существующих разделов (перед созданием)
bool DeleteFolders() {
  THmsScriptMediaItem Item, FavFolder; int i, nAnsw;
  FavFolder = HmsFindMediaFolder(FolderItem.ItemID, &apos;favorites&apos;);
  if (FavFolder==nil) { FolderItem.DeleteChildItems(); return true; }
  nAnsw = MessageDlg(&apos;Очистить папку "Избранное"?&apos;, mtConfirmation, mbYes+mbNo+mbCancel, 0);
  if (nAnsw== mrCancel) return false;
  for (i=FolderItem.ChildCount-1; i&gt;=0; i--) {
    Item = FolderItem.ChildItems[i];
    if ((Item==FavFolder) &amp;&amp; (nAnsw==mrNo)) continue;
    Item.Delete();
  }
  return true;
}

///////////////////////////////////////////////////////////////////////////////
void CreateSerialsList(THmsScriptMediaItem SerialsFolder) {
  THmsScriptMediaItem Folder, Item; string sData, sName, sLink, sYear, sGrp, sKPID, sTran, sImg;
  TJsonObject JSON, VIDEO; TJsonArray JARRAY; int i;
  
  sData = HmsDownloadURL(gsAPIUrl+&apos;videos?serials=1&amp;limit=9990&apos;, "Accept-Encoding: gzip, deflate", true);
  sData = HmsUtf8Decode(sData);
  JSON  = TJsonObject.Create();
  try {
    JSON.LoadFromString(sData);
    JARRAY = JSON.AsArray; if (JARRAY == nil) return;
    for (i = 0; i &lt; JARRAY.Length; i++) {
      if ((i % 10)==0) {
        HmsSetProgress(int(i * 100 / JARRAY.Length));
        HmsShowProgress(Format("Загружено %d из %d", [i+1, JARRAY.Length]));
      }
      VIDEO = JARRAY[i];
      sName = VIDEO.S["name"];
      sLink = "http://hdgo.cc/video/serials/"+gsToken+"/"+VIDEO.S["id"]+"/";
      sTran = VIDEO.S["translator"];
      sKPID = VIDEO.S["kpid"];
      
      Folder = SerialsFolder.AddFolder(GetGroupName(sName), true);

      if (sTran!="") sName += " ["+Trim(sTran)+"]";
      
      Item = Folder.AddFolder(sLink);
      Item[mpiTitle          ] = sName;
      Item[mpiCreateDate     ] = VarToStr(IncTime(gStart,0,-gnTotalItems,0,0));
      Item[mpiFolderSortOrder] = -mpiCreateDate;
      Item[mpiJsonInfo       ] = VIDEO.SaveToString();
      
      if ((sKPID!="") &amp;&amp; (sKPID!="0")) {
        Item[mpiThumbnail] = "https://st.kp.yandex.net/images/film_iphone/iphone360_"+sKPID+".jpg";
      }
      
      gnTotalItems++;
      if (HmsCancelPressed) break;
    }
  } finally { JSON.Free; HmsHideProgress(); }
  
  // Сортируем по названию
  SerialsFolder.Sort("+mpTitle");
  for (i=0; i &lt; SerialsFolder.ChildCount; i++) {
    Item = SerialsFolder.ChildItems[i];
    Item.Sort("+mpTitle");
  }
  
  HmsLogMessage(1, mpTitle+&apos;: Создано сериалов - &apos;+IntToStr(gnTotalItems));
}

///////////////////////////////////////////////////////////////////////////////
// ---------------------  M A I N  P R O C E D U R E  -------------------------
{
  THmsScriptMediaItem Folder;
  
  if (!DeleteFolders()) return;

  if (FolderItem==Podcast) {
    // Это корневая папка подкаста - создём структуру
    CreateFolder      (FolderItem, &apos; Избранное&apos;         , &apos;favorites&apos;  , &apos;&apos;, true);
    CreateSearchFolder(FolderItem, &apos;01 Поиск&apos;);
    Folder=CreateFolder(FolderItem,&apos;02 Последние поступления&apos;, &apos;lastvideos&apos;);
    Folder[mpiComment] = &apos;--update&apos;;
    Folder[mpiPodcastParameters] = "--maxingroup=250";
    Folder = CreateFolder(FolderItem, &apos;03 Сериалы&apos;, &apos;serials&apos;, &apos;&apos;, true, true);
    Folder[mpiFolderSortOrder] = mpiTitle;
    CreateCategories  (FolderItem, &apos;04 Категории&apos;       , &apos;serials=0&amp;limit=500&amp;category&apos;, &apos;--group=year&apos;);
    CreateYears       (FolderItem, &apos;05 По-годам&apos;        , &apos;serials=0&amp;limit=500&amp;year&apos;);
    CreateCategories  (FolderItem, &apos;06 По-странам&apos;      , &apos;serials=0&amp;country&apos;, &apos;--group=year&apos;);

    Folder = CreateFolder(FolderItem, &apos;07 С рейтингом IMDb от 6.0&apos;, &apos;imdb&gt;6&apos;, &apos;&apos;, true);
    CreateFolder    (Folder, &apos;1 Последние поступления IMDb&gt;6&apos;, &apos;serials=0&amp;min_imdb=6&apos;);
    CreateCategories(Folder, &apos;2 Категории&apos;      , &apos;serials=0&amp;min_imdb=6&amp;limit=500&amp;category&apos;);
    CreateYears     (Folder, &apos;3 По-годам&apos;       , &apos;serials=0&amp;min_imdb=6&amp;limit=500&amp;year&apos;);
    CreateCategories(Folder, &apos;4 По-странам&apos;     , &apos;serials=0&amp;min_imdb=6&amp;country&apos;, &apos;--group=year&apos;);
    
    Folder = CreateFolder(FolderItem, &apos;08 С рейтингом KP от 6.0&apos;, &apos;kp&gt;6&apos;, &apos;&apos;, true);
    CreateFolder    (Folder, &apos;1 Последние поступления KP&gt;6&apos;, &apos;serials=0&amp;min_kp=6&apos;);
    CreateCategories(Folder, &apos;2 Категории&apos;      , &apos;serials=0&amp;min_kp=6&amp;limit=500&amp;category&apos;);
    CreateYears     (Folder, &apos;3 По-годам&apos;       , &apos;serials=0&amp;min_kp=6&amp;limit=500&amp;year&apos;);
    CreateCategories(Folder, &apos;4 По-странам&apos;     , &apos;serials=0&amp;min_kp=6&amp;country&apos;, &apos;--group=year&apos;);
    
    CreateFolder      (FolderItem, &apos;09 TOP250 IMDb&apos;     , &apos;top=imdb&apos;);
    CreateFolder      (FolderItem, &apos;10 TOP250 Kinopoisk&apos;, &apos;top=kp&apos;  );

  } else if (mpFilePath==&apos;serials&apos;) {
    // Создание списка сериалов - отдельно
    CreateSerialsList(FolderItem);
    
  }
  
  HmsLogMessage(1, mpTitle+&apos;: Создано элементов - &apos;+IntToStr(gnTotalItems));
}
</Value>
    </Property>
    <Property>
      <ID>572</ID>
      <Value>C++Script</Value>
    </Property>
    <Property>
      <ID>215</ID>
      <Value>mpTitle</Value>
    </Property>
    <Property>
      <ID>530</ID>
      <Value>// 2018.05.12
///////////////////////  Обновление списка подкаста  //////////////////////////
#define mpiJsonInfo 40032 // Идентификатор для хранения json информации о фильме

///////////////////////////////////////////////////////////////////////////////
//               Г Л О Б А Л Ь Н Ы Е   П Е Р Е М Е Н Н Ы Е                   //
THmsScriptMediaItem Podcast = GetRoot(); // Главная папка подкаста
int       gnTotalItems = 0; 
TDateTime gStart       = Now;
string    gsAPIUrl     = "http://api.lostcut.net/hdgo/";
string    gsToken      = "Q298nQsLY481iJzUPrlwVnRh6EqC8Ctd";

///////////////////////////////////////////////////////////////////////////////
//                             Ф У Н К Ц И И                                 //

///////////////////////////////////////////////////////////////////////////////
// Установка переменной Podcast: поиск родительской папки, содержащий скрипт
THmsScriptMediaItem GetRoot() {
  Podcast = FolderItem; // Начиная с текущего элемента, ищется создержащий срипт
  while ((Trim(Podcast[550])==&apos;&apos;) &amp;&amp; (Podcast[532]!=&apos;1&apos;) &amp;&amp; (Podcast.ItemParent!=nil)) 
    Podcast=Podcast.ItemParent;
  return Podcast;
}

///////////////////////////////////////////////////////////////////////////////
// Получение название группы из имени
string GetGroupName(string sName) {
  string sGrp = &apos;#&apos;;
  if (HmsRegExMatch(&apos;([A-ZА-Я0-9])&apos;, sName, sGrp, 1, PCRE_CASELESS)) sGrp = Uppercase(sGrp);
  if (HmsRegExMatch(&apos;[0-9]&apos;, sGrp, sGrp)) sGrp = &apos;#&apos;;
  if (HmsRegExMatch(&apos;[A-Z]&apos;, sGrp, sGrp)) sGrp = &apos;A..Z&apos;;
  return sGrp;
}

///////////////////////////////////////////////////////////////////////////////
// Создание папки или подкаста
THmsScriptMediaItem CreateFolder(THmsScriptMediaItem ParentFolder, string sName, string sLink, string sImg=&apos;&apos;) {
  THmsScriptMediaItem Item = ParentFolder.AddFolder(sLink); // Создаём папку с указанной ссылкой
  Item[mpiTitle     ] = sName; // Присваиваем наименование
  Item[mpiThumbnail ] = sImg;  // Картинка
  Item[mpiCreateDate] = DateTimeToStr(IncTime(gStart, 0, -gnTotalItems, 0, 0)); // Для обратной сортировки по дате создания
  Item[mpiFolderSortOrder] = -mpiCreateDate;
  gnTotalItems++;              // Увеличиваем счетчик созданных элементов
  return Item;                 // Возвращаем созданный объект
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылки на видео
THmsScriptMediaItem CreateMediaItem(THmsScriptMediaItem Folder, string sTitle, string sLink, string sImg="", string sGrp="", int nTime=0) {
  if (nTime==0) nTime = 6600;
  THmsScriptMediaItem Item = HmsCreateMediaItem(sLink, Folder.ItemID, sGrp);
  Item[mpiTitle     ] = sTitle;
  Item[mpiThumbnail ] = sImg;
  Item[mpiCreateDate] = VarToStr(IncTime(gStart,0,-gnTotalItems,0,0));
  Item[mpiTimeLength] = HmsTimeFormat(nTime)+".000";
  gnTotalItems++;
  return Item;
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылки-ошибки
void ErrorItem(string sMsg) {
  THmsScriptMediaItem Item = HmsCreateMediaItem(&apos;Err&apos;+IntToStr(FolderItem.ChildCount), FolderItem.ItemID);
  Item[mpiTitle     ] = sMsg;
  Item[mpiThumbnail ] = &apos;http://wonky.lostcut.net/icons/symbol-error.png&apos;;
}

///////////////////////////////////////////////////////////////////////////////
// Создание информационной ссылки
void InfoItem(string sName, string sVal) {
  if ((sVal=="") || (sVal=="-")) return; if (sName!="") sName+= ": ";
  THmsScriptMediaItem Item = HmsCreateMediaItem(&apos;Info&apos;+IntToStr(FolderItem.ChildCount), FolderItem.ItemID);
  Item[mpiTitle     ] = sName+sVal;
  Item[mpiThumbnail ] = &apos;http://wonky.lostcut.net/vids/info.jpg&apos;;
  Item[mpiTimeLength] = 20;
  Item[mpiCreateDate] = VarToStr(IncTime(gStart,0,-gnTotalItems,0,0));
  gnTotalItems++;
}

///////////////////////////////////////////////////////////////////////////////
string DetectQualityIndex() {
  string sQual, sSelectedQual="", sVal;
  HmsRegExMatch("--quality=(\\w+)", mpPodcastParameters, sQual);
  if      (sQual=="low"   ) sSelectedQual = "?q=1";
  else if (sQual=="medium") sSelectedQual = "?q=3";
  else if (HmsRegExMatch("(\\d+)", sQual, sVal)) {
    extended minDiff = 999999; // search nearest quality
    Variant  aQualList = [360,480,720,1080];
    for (int i=0; i &lt; Length(aQualList); i++) {
      extended diff = aQualList[i] - StrToInt(sVal);
      if (Abs(diff) &lt; minDiff) {
        minDiff = Abs(diff);
        sSelectedQual = "?q="+IntToStr(i+1);
      }
    }
  } else sSelectedQual = "";
  return sSelectedQual;
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылок на список переводов или сезонов с сериями с hdgo.cc
void CreateHdgoLinks(string sLink) {
  string sData, sName, sID, sVal, sGrp, sQual, sImg, sSelectedQual;
  THmsScriptMediaItem Item; int i, n, nTime;
  TJsonObject JSON, HDGO, SEASON, EPISODE; TJsonArray SEASONS, EPISODES; 
  
  if (!HmsRegExMatch(".*/(\\d+)", sLink, sID)) return;
  
  // Дополнительные параметры
  HmsRegExMatch("--quality=(\\w+)", mpPodcastParameters, sQual);
  bool bDirectLinks = (Pos("--directlinks", mpPodcastParameters)&gt;0);
  
  JSON = TJsonObject.Create();
  HDGO = TJsonObject.Create();
  try {
    JSON.LoadFromString(FolderItem[mpiJsonInfo]);
    nTime = JSON.I["time"];
    if (JSON.B["isserial"]) {
      sData = HmsUtf8Decode(HmsDownloadURL(gsAPIUrl+"series?id="+JSON.S["id"]));
      HDGO.LoadFromString(sData);
      SEASONS = HDGO.AsArray;
      bool bNoSeasons = (SEASONS.Length==1) &amp;&amp; (SEASONS[0].S["name"]=="Сезон 01");
      for (i=0; i &lt; SEASONS.Length; i++) {
        SEASON = SEASONS[i];
        if (bNoSeasons) sGrp = "";
        else            sGrp = SEASON.S["name"];
        EPISODES = SEASON.A["episodes"];
        for (n=0; n &lt; EPISODES.Length; n++) {
          EPISODE = EPISODES[n];
          sLink = EPISODE.S["link" ];
          sName = EPISODE.S["name" ];
          sImg  = EPISODE.S["image"];
          if (bDirectLinks)
            sLink = GetMP4LinkHdgo(sLink);
          CreateMediaItem(FolderItem, sName, sLink, sImg, sGrp, nTime);
        }
      }
      
    } else {
      sName = JSON.S["name"];
      sLink = mpFilePath;
      if (sQual=="all") {
        sData = LoadHdgoHtml(sLink, "");
        TRegExpr RE = TRegExpr.Create("url:\\s*&apos;(.*?)&apos;", PCRE_SINGLELINE);
        if (RE.Search(sData)) do {
          sLink = RE.Match(); sVal="";
          HmsRegExMatch("/(\\d)/", sLink, sVal);
          if      (sVal=="1") sName = "[360p] "+JSON.S["name"];
          else if (sVal=="2") sName = "[480p] "+JSON.S["name"];
          else if (sVal=="3") sName = "[720p] "+JSON.S["name"];
          else if (sVal=="4") sName = "[1080p] "+JSON.S["name"];
          sLink = GetMP4LinkHdgo(sLink, true);
          CreateMediaItem(FolderItem, sName, sLink, mpThumbnail, "", nTime);
        } while (RE.SearchAgain); else {
          ErrorItem("Video not found!");
        }
        
      } else {
        sSelectedQual = DetectQualityIndex();
        sLink += sSelectedQual;
        if (bDirectLinks)
          sLink = GetMP4LinkHdgo(sLink);
        CreateMediaItem(FolderItem, sName, sLink, mpThumbnail, "", nTime);
      }
    }    
  } finally { JSON.Free; HDGO.Free; }
}

///////////////////////////////////////////////////////////////////////////////
string LoadHdgoHtml(string sLink, string &amp;sReferer) {
  string sHtml; HmsRegExMatch("(https?://.*?/)", sLink, sReferer);
  sHtml = HmsDownloadURL(sLink, "Referer: http://hdgo.cc");
  if (HmsRegExMatch(&apos;[^\&apos;]&lt;iframe[^&gt;]+src="(.*?)"&apos;, sHtml, sLink)) {
    if (LeftCopy(sLink, 2)=="//") sLink = "http:"+Trim(sLink);
    HmsRegExMatch("(https?://.*?/)", sLink, sReferer);
    sHtml = HmsDownloadURL(sLink, "Referer: http://hdgo.cc");
  }
  if (!HmsRegExMatch("url:\\s*&apos;http", sHtml, &apos;&apos;) &amp;&amp; HmsRegExMatch(&apos;&lt;iframe[^&gt;]+src="(.*?)"&apos;, sHtml, sLink)) {
    if (LeftCopy(sLink, 2)=="//") sLink = "http:"+Trim(sLink);
    HmsRegExMatch("(https?://.*?/)", sLink, sReferer);
    sHtml = HmsDownloadURL(sLink, "Referer: "+sLink);
  }
  return sHtml;
}

///////////////////////////////////////////////////////////////////////////////
string GetMP4LinkHdgo(string sLink, bool bNotLoadHtml = false) {
  string sHtml, sServer, sPage, sRet, sMp4Link, sQual, sReferer;
  HmsRegExMatch("(https?://.*?/)", sLink, sReferer);
  if (!HmsRegExMatch("q=(\\d)", sLink, sQual)) {
    sQual = DetectQualityIndex();
    HmsRegExMatch("q=(\\d)", sQual, sQual);
  }
  int INTERNET_FLAG_NO_AUTO_REDIRECT = 0x00200000;
  if (bNotLoadHtml) {
    sMp4Link = sLink;
  } else {
    sMp4Link = ""; sHtml = LoadHdgoHtml(sLink, sReferer);
    if (sQual!="") HmsRegExMatch("url:\\s*&apos;([^&apos;]+/"+sQual+"/.*?)&apos;", sHtml, sMp4Link, 1, PCRE_SINGLELINE);
    if (sMp4Link=="") HmsRegExMatch(".*url:\\s*&apos;(.*?)&apos;", sHtml, sMp4Link, 1, PCRE_SINGLELINE);
  }
  HmsRegExMatch2("//(.*?)(/.*)", sMp4Link, sServer, sPage);
  HmsSendRequestEx(sServer, sPage, "HEAD", "", sReferer, "", 80, INTERNET_FLAG_NO_AUTO_REDIRECT, sRet, true);
  HmsRegExMatch("Location:(.*?)[\r\n]", sRet, sLink);
  return sLink;
}

///////////////////////////////////////////////////////////////////////////////
void CreateInfoLinks() {
  string sID, sImg; int nTime = 210;
  // Создание информационных ссылок
  if (Pos(&apos;--infoitems&apos;, mpPodcastParameters) &gt; 0) {
    TJsonObject VIDEO = TJsonObject.Create();
    try {
      VIDEO.LoadFromString(FolderItem[mpiJsonInfo]);
      if (VIDEO.B["kpid" ]) sImg = &apos;https://st.kp.yandex.net/images/film_iphone/iphone360_&apos;+VIDEO.S["kpid"]+&apos;.jpg&apos;;
      if (VIDEO.B["image"]) sImg = &apos;https://st.kp.yandex.net/images/&apos;+VIDEO.S["image"];
      if (VIDEO.B["trailer_hd" ]) CreateMediaItem(FolderItem, &apos;Трейлер HD&apos; , VIDEO.S["trailer_hd" ], sImg, "", nTime);
      if (VIDEO.B["trailer_sd" ]) CreateMediaItem(FolderItem, &apos;Трейлер SD&apos; , VIDEO.S["trailer_sd" ], sImg, "", nTime);
      if (!VIDEO.B["trailer_hd"] &amp;&amp; !VIDEO.B["trailer_sd"] &amp;&amp; VIDEO.B["yt"]) {
        sImg = "https://img.youtube.com/vi/"+VIDEO.S["yt"]+"/sddefault.jpg";
        CreateMediaItem(FolderItem, &apos;Трейлер (youtube)&apos;, "https://www.youtube.com/watch?v="+VIDEO.S["yt"], sImg, "", nTime);
      }
      InfoItem(&apos;Страна&apos;  , VIDEO.S["country" ]);
      InfoItem(&apos;Жанр&apos;    , VIDEO.S["genre"   ]);
      InfoItem(&apos;Год&apos;     , VIDEO.S["year"    ]);
      InfoItem(&apos;Режиссёр&apos;, VIDEO.S["director"]);
      if (VIDEO.B["rating_kp"  ]) InfoItem(&apos;Рейтинг КП&apos;  , VIDEO.S["rating_kp"  ]+&apos; (&apos;+VIDEO.S["rating_kp_votes"  ]+&apos;)&apos;);
      if (VIDEO.B["rating_imdb"]) InfoItem(&apos;Рейтинг IMDb&apos;, VIDEO.S["rating_imdb"]+&apos; (&apos;+VIDEO.S["rating_imdb_votes"]+&apos;)&apos;);
      InfoItem(&apos;Перевод&apos; , VIDEO.S["translator"]);
      InfoItem(&apos;Качество&apos;, VIDEO.S["quality"   ]);
    } finally { VIDEO.Free; }
  }
}

///////////////////////////////////////////////////////////////////////////////
// Создание списка видео
void CreateVideosList(string sParams="") {
  string sData, sLink, sName, sImg, sKPID, sYear, sVal, sGrp="", sGroupKey="";
  int i, nTime, iCnt=0, nGrp=0, nSortCount=0, nMaxInGroup=100, nMinInGroup=30;
  TJsonObject JSON, VIDEO; TJsonArray JARRAY; THmsScriptMediaItem Item, Folder=FolderItem;
  
  // Параметры
  bool bYearInTitle = Pos(&apos;--yearintitle&apos;, mpPodcastParameters) &gt; 0; // Добавлять год к названию
  bool bNoFolders   = Pos(&apos;--nofolders&apos;  , mpPodcastParameters) &gt; 0; // Режим "без папкок" для фильмов
  bool bNumetare    = Pos(&apos;--numerate&apos;   , mpPodcastParameters) &gt; 0; // Нумеровать созданные ссылки
  HmsRegExMatch(&apos;--group=(\\w+)&apos;, mpPodcastParameters, sGroupKey);   // Режим группировки
  if (HmsRegExMatch(&apos;--maxingroup=(\\d+)&apos;, mpPodcastParameters, sVal)) nMaxInGroup = StrToInt(sVal);
  if (HmsRegExMatch(&apos;--miningroup=(\\d+)&apos;, mpPodcastParameters, sVal)) nMinInGroup = StrToInt(sVal);
  if (Pos(&apos;top=&apos;, sParams)&gt;0) { bNoFolders=true; bNumetare=true; }
  
  // Если нет ссылки - формируем ссылку для поиска названия
  if ((Trim(mpFilePath)==&apos;&apos;) || HmsRegExMatch(&apos;search="(.*?)"&apos;, mpFilePath, mpTitle)) {
    switch(FolderItem.ItemParent[mpiFilePath]) {
      case &apos;directors&apos;   : { sParams=&apos;director=&apos;;    }
      case &apos;actors&apos;      : { sParams=&apos;actor=&apos;;       }
      case &apos;scenarists&apos;  : { sParams=&apos;scenarist=&apos;;   }
      case &apos;producers&apos;   : { sParams=&apos;producer=&apos;;    }
      case &apos;composers&apos;   : { sParams=&apos;composer=&apos;;    }
      case &apos;translations&apos;: { sParams=&apos;translation=&apos;; }
      default            : { sParams=&apos;q=&apos;;           }
    }
    sParams += HmsHttpEncode(HmsUtf8Encode(mpTitle))+"&amp;serials=2";
  }
  
  // Получение данных и цикл создания ссылок на видео
  sData = HmsDownloadURL(gsAPIUrl+&apos;videos?&apos;+sParams, "Accept-Encoding: gzip, deflate", true);
  sData = HmsUtf8Decode(sData);
  JSON  = TJsonObject.Create();
  try {
    JSON.LoadFromString(sData);
    JARRAY = JSON.AsArray; if (JARRAY==nil) return;
    if ((sGroupKey=="") &amp;&amp; (JARRAY.Length &gt; nMaxInGroup)) sGroupKey="quant";
    else if (JARRAY.Length &lt; nMinInGroup) sGroupKey=""; // Не группируем, если их мало
    for (i=0; i&lt;JARRAY.Length; i++) {
      VIDEO = JARRAY[i]; sImg=&apos;&apos;;
      sName = VIDEO.S[&apos;name&apos;];
      sLink = "http://hdgo.cc/video/"+gsToken+"/"+VIDEO.S[&apos;id&apos;]+"/";
      sYear = VIDEO.S[&apos;year&apos;];
      sKPID = VIDEO.S[&apos;kpid&apos;];
      sName = HmsJsonDecode(sName);
      if (Length(sKPID)&gt;1) sImg = &apos;https://st.kp.yandex.net/images/film_iphone/iphone360_&apos;+sKPID+&apos;.jpg&apos;;
      // Добавляем год в название, если установлен флаг и этого года в названии нет
      if ((bYearInTitle &amp;&amp; (sYear!="0") &amp;&amp; (Pos(sYear, sName)&lt;1))) sName = Trim(sName)+" ("+sYear+")";
      if (bNumetare) sName = Format(&apos;%.3d %s&apos;, [i+1, sName]);
      
      switch (sGroupKey) {
        case "quant": { sGrp = Format("%.2d", [nGrp]); iCnt++; if (iCnt&gt;=nMaxInGroup) { nGrp++; iCnt=0; } }
        case "alph" : { sGrp = GetGroupName(sName); }
        case "year" : { sGrp = sYear; }
        default     : { sGrp = "";    }
      }
      if (Trim(sGrp)!="") { Folder = CreateFolder(FolderItem, sGrp, sGrp); gnTotalItems--; }
      
      if (bNoFolders &amp;&amp; !VIDEO.B[&apos;isserial&apos;]) {
        Item = CreateMediaItem(Folder, sName, sLink, sImg, "", VIDEO.I[&apos;time&apos;]);
        Item[mpiYear    ] = VIDEO.I[&apos;year&apos;      ];
        Item[mpiGenre   ] = VIDEO.S[&apos;genre&apos;     ];
        Item[mpiDirector] = VIDEO.S[&apos;director&apos;  ];
        Item[mpiActor   ] = VIDEO.S[&apos;actors&apos;    ];
        Item[mpiComment ] = VIDEO.S[&apos;translator&apos;];
      } else {
        Item = CreateFolder(Folder, sName, sLink, sImg);
        if (VIDEO.B[&apos;isserial&apos;]) {
          // Для сериалов запоминаем его название в свойстве mpiSeriesTitle
          if (VIDEO.S[&apos;name_eng&apos;]!=&apos;&apos;) mpSeriesTitle = VIDEO.S[&apos;name_eng&apos;];
          else                         mpSeriesTitle = VIDEO.S[&apos;name&apos;];
          // Если несколько вариантов ререз /, то берём только первый
          HmsRegExMatch(&apos;^(.*?)\\s/\\s&apos;, mpSeriesTitle, mpSeriesTitle);
          Item[mpiSeriesTitle] = mpSeriesTitle;
          Item[mpiYear       ] = VIDEO.I[&apos;year&apos;];
        }
      }
      Item[mpiJsonInfo] = VIDEO.SaveToString(); // JSON информация о фильме
    }
  } finally { JSON.Free; }
  if      (sGroupKey=="alph") FolderItem.Sort("mpTitle" );
  else if (sGroupKey=="year") FolderItem.Sort("-mpTitle");
  HmsLogMessage(1, Podcast[mpiTitle]+"/"+mpTitle+&apos;: Создано ссылок - &apos;+IntToStr(gnTotalItems));
}

///////////////////////////////////////////////////////////////////////////////
// Проверка и обновление скриптов подкаста
void CheckPodcastUpdate() {
  string sData, sName, sLang, sExt, sMsg; int i, mpiTimestamp=100602, mpiSHA, mpiScript;
  TJsonObject JSON, JFILE; TJsonArray JARRAY; bool bChanges=false;
  
  // Если после последней проверки прошло меньше получаса - валим
  if ((Trim(Podcast[550])==&apos;&apos;) || (DateTimeToTimeStamp1970(Now, false)-StrToIntDef(Podcast[mpiTimestamp], 0) &lt; 14400)) return; // раз в 4 часа
  Podcast[mpiTimestamp] = DateTimeToTimeStamp1970(Now, false); // Запоминаем время проверки
  sData = HmsDownloadURL(&apos;https://api.github.com/repos/WendyH/HMS-podcasts/contents/hdgo&apos;, "Accept-Encoding: gzip, deflate", true);
  JSON  = TJsonObject.Create();
  try {
    JSON.LoadFromString(sData);
    JARRAY = JSON.AsArray(); if (JARRAY==nil) return;
    for (i=0; i&lt;JARRAY.Length; i++) {        // Обходим в цикле все файлы в папке github
      JFILE = JARRAY[i]; if(JFILE.S[&apos;type&apos;]!=&apos;file&apos;) continue;
      sName = ChangeFileExt(JFILE.S[&apos;name&apos;], &apos;&apos;); sExt = ExtractFileExt(JFILE.S[&apos;name&apos;]);
      switch (sExt) { case&apos;.cpp&apos;:sLang=&apos;C++Script&apos;; case&apos;.pas&apos;:sLang=&apos;PascalScript&apos;; case&apos;.vb&apos;:sLang=&apos;BasicScript&apos;; case&apos;.js&apos;:sLang=&apos;JScript&apos;; default:sLang=&apos;&apos;; } // Определяем язык по расширению файла
      if      (sName==&apos;CreatePodcastFeeds&apos;   ) { mpiSHA=100701; mpiScript=571; sMsg=&apos;Требуется запуск "Создать ленты подкастов"&apos;; } // Это сприпт создания покаст-лент   (Alt+1)
      else if (sName==&apos;CreateFolderItems&apos;    ) { mpiSHA=100702; mpiScript=530; sMsg=&apos;Требуется обновить раздел заново&apos;;           } // Это скрипт чтения списка ресурсов (Alt+2)
      else if (sName==&apos;PodcastItemProperties&apos;) { mpiSHA=100703; mpiScript=510; sMsg=&apos;Требуется обновить раздел заново&apos;;           } // Это скрипт чтения дополнительных в RSS (Alt+3)
      else if (sName==&apos;MediaResourceLink&apos;    ) { mpiSHA=100704; mpiScript=550; sMsg=&apos;&apos;; }                                           // Это скрипт получения ссылки на ресурс  (Alt+4)
      else continue;                         // Если файл не определён - пропускаем
      if (Podcast[mpiSHA]!=JFILE.S[&apos;sha&apos;]) { // Проверяем, требуется ли обновлять скрипт?
        sData = HmsDownloadURL(JFILE.S[&apos;download_url&apos;], "Accept-Encoding: gzip, deflate", true); // Загружаем скрипт
        if (sData==&apos;&apos;) continue;                                                     // Если не получилось загрузить, пропускаем
          Podcast[mpiScript+0] = HmsUtf8Decode(ReplaceStr(sData, &apos;\xEF\xBB\xBF&apos;, &apos;&apos;)); // Скрипт из unicode и убираем BOM
        Podcast[mpiScript+1] = sLang;                                                // Язык скрипта
        Podcast[mpiSHA     ] = JFILE.S[&apos;sha&apos;]; bChanges = true;                      // Запоминаем значение SHA скрипта
        HmsLogMessage(1, Podcast[mpiTitle]+": Обновлён скрипт подкаста "+sName);     // Сообщаем об обновлении в журнал
        if (sMsg!=&apos;&apos;) FolderItem.AddFolder(&apos; !&apos;+sMsg+&apos;!&apos;);                           // Выводим сообщение как папку
      }
    } 
  } finally { JSON.Free; if (bChanges) HmsDatabaseAutoSave(true); }
} //Вызов в главной процедуре: if ((Pos(&apos;--nocheckupdates&apos; , mpPodcastParameters)&lt;1) &amp;&amp; (mpComment==&apos;--update&apos;)) CheckPodcastUpdate();

///////////////////////////////////////////////////////////////////////////////
//                     Г Л А В Н А Я   П Р О Ц Е Д У Р А                     //
{ string sYear;
  
  // Проверка на упоротых, которые пытаются запустить "Обновление подкастов" для всех сериалов разом
  if (InteractiveMode &amp;&amp; (HmsCurrentMediaTreeItem.ItemClassName==&apos;TVideoPodcastsFolderItem&apos;)) {
    HmsCurrentMediaTreeItem.DeleteChildItems(); // Дабы обновления всех подкастов не запустилось - удаляем их.
    ShowMessage(&apos;Обновление всех разделов разом запрещено!\nДля восстановления структуры\nзапустите "Создать ленты подкастов".&apos;);
    return;
  } 
  FolderItem.DeleteChildItems();
 
  if ((Pos(&apos;--nocheckupdates&apos; , mpPodcastParameters)&lt;1) &amp;&amp; (mpComment==&apos;--update&apos;)) CheckPodcastUpdate(); // Проверка обновлений подкаста
    
  if (mpFilePath=="lastvideos") {
    mpPodcastParameters += " --maxingroup=200";
    CreateVideosList("serials=0&amp;limit=200&amp;category=-24");
    
  } else if (HmsRegExMatch("films-year=(\\d+)", mpFilePath, sYear)) {
    CreateVideosList("year="+sYear);
    
  } else if (Pos("hdgo.", mpFilePath)&gt;0) {
    CreateHdgoLinks(mpFilePath);
    THmsScriptMediaItem Item = HmsFindMediaFolder(Podcast.ItemID, &apos;favorites&apos;);
    if (Item!=nil) {
      string sName, sLink;
      bool bExist = HmsFindMediaFolder(Item.ItemID, mpFilePath) != nil;
      if (bExist) { sName = "Удалить из избранного"; sLink = "-FavDel="+FolderItem.ItemParent.ItemID+";"+mpFilePath; }
      else        { sName = "Добавить в избранное" ; sLink = "-FavAdd="+FolderItem.ItemParent.ItemID+";"+mpFilePath; }
      CreateMediaItem(FolderItem, sName, sLink, &apos;http://wonky.lostcut.net/icons/ok.png&apos;, sName, 60);
    }
    CreateInfoLinks();

  } else {
    CreateVideosList(mpFilePath);
  }
  
}</Value>
    </Property>
    <Property>
      <ID>531</ID>
      <Value>C++Script</Value>
    </Property>
    <Property>
      <ID>550</ID>
      <Value>// 2018.09.27
////////////////////  Получение ссылки на медиа-ресурс  ///////////////////////
#define mpiJsonInfo 40032 // Идентификатор для хранения json информации о фильме

///////////////////////////////////////////////////////////////////////////////
//               Г Л О Б А Л Ь Н Ы Е   П Е Р Е М Е Н Н Ы Е                   //
THmsScriptMediaItem Podcast = GetRoot(); // Главная папка подкаста
int       gnTotalItems = 0; 
TDateTime gStart       = Now;
string    gsAPIUrl     = "http://api.lostcut.net/hdgo/";
string    gsToken      = "Q298nQsLY481iJzUPrlwVnRh6EqC8Ctd";

///////////////////////////////////////////////////////////////////////////////
//                             Ф У Н К Ц И И                                 //

///////////////////////////////////////////////////////////////////////////////
// Установка переменной Podcast: поиск родительской папки, содержащий скрипт
THmsScriptMediaItem GetRoot() {
  Podcast = PodcastItem; // Начиная с текущего элемента, ищется создержащий срипт
  while ((Trim(Podcast[550])==&apos;&apos;) &amp;&amp; (Podcast[532]!=&apos;1&apos;) &amp;&amp; (Podcast.ItemParent!=nil)) 
    Podcast=Podcast.ItemParent;
  return Podcast;
}

///////////////////////////////////////////////////////////////////////////////
// Добавление или удаление сериала из/в избранное
void AddRemoveFavorites() {
  string sLink, sCmd, sID; THmsScriptMediaItem FavFolder, Item, Src; bool bExist;
  
  if (!HmsRegExMatch3(&apos;(Add|Del)=(.*?);(.*)&apos;, mpFilePath, sCmd, sID, sLink)) return;
  FavFolder = HmsFindMediaFolder(Podcast.ItemID, &apos;favorites&apos;);
  if (FavFolder!=nil) {
    Item = HmsFindMediaFolder(FavFolder.ItemID, sLink);
    bExist = (Item != nil);
    if      ( bExist &amp;&amp; (sCmd==&apos;Del&apos;)) Item.Delete();
    else if (!bExist &amp;&amp; (sCmd==&apos;Add&apos;)) {
      Src = HmsFindMediaFolder(sID, sLink);
      if (Src!=nil) {
        Item = FavFolder.AddFolder(Src[mpiFilePath]);
        Item.CopyProperties(Src, [mpiTitle, mpiThumbnail, mpiJsonInfo, mpiYear]);
      }
    }
  }
  MediaResourceLink = ProgramPath()+&apos;\\Presentation\\Images\\videook.mp4&apos;;
  if (bExist) { mpTitle = "Добавить в избранное" ; mpFilePath = "-FavDel="+sID+";"+sLink; }
  else        { mpTitle = "Удалить из избранного"; mpFilePath = "-FavDel="+sID+";"+sLink; }
  PodcastItem[mpiTitle] = mpTitle;
  PodcastItem.ItemOrigin.ItemParent[mpiTitle] = mpTitle;
  PodcastItem[mpiFilePath] = mpFilePath;
  PodcastItem.ItemOrigin.ItemParent[mpiFilePath] = mpFilePath;
  HmsIncSystemUpdateID(); // Говорим устройству об обновлении содержания
}

///////////////////////////////////////////////////////////////////////////////
// Создание папки или подкаста
THmsScriptMediaItem CreateFolder(THmsScriptMediaItem ParentFolder, string sName, string sLink, string sImg=&apos;&apos;) {
  THmsScriptMediaItem Item = ParentFolder.AddFolder(sLink); // Создаём папку с указанной ссылкой
  Item[mpiTitle     ] = sName; // Присваиваем наименование
  Item[mpiThumbnail ] = sImg;  // Картинка
  Item[mpiCreateDate] = DateTimeToStr(IncTime(gStart, 0, -gnTotalItems, 0, 0)); // Для обратной сортировки по дате создания
  Item[mpiFolderSortOrder] = -mpiCreateDate;
  gnTotalItems++;              // Увеличиваем счетчик созданных элементов
  return Item;                 // Возвращаем созданный объект
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылки на видео
THmsScriptMediaItem CreateMediaItem(THmsScriptMediaItem Folder, string sTitle, string sLink, string sImg="", string sGrp="", int nTime=0) {
  if (nTime==0) nTime = 6600;
  THmsScriptMediaItem Item = HmsCreateMediaItem(sLink, Folder.ItemID, sGrp);
  Item[mpiTitle     ] = sTitle;
  Item[mpiThumbnail ] = sImg;
  Item[mpiCreateDate] = VarToStr(IncTime(gStart,0,-gnTotalItems,0,0));
  Item[mpiTimeLength] = HmsTimeFormat(nTime)+".000";
  gnTotalItems++;
  return Item;
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылки-ошибки
void ErrorItem(string sMsg) {
  THmsScriptMediaItem Item = HmsCreateMediaItem(&apos;Err&apos;+IntToStr(PodcastItem.ChildCount), PodcastItem.ItemID);
  Item[mpiTitle     ] = sMsg;
  Item[mpiThumbnail ] = &apos;http://wonky.lostcut.net/icons/symbol-error.png&apos;;
}

///////////////////////////////////////////////////////////////////////////////
// Создание информационной ссылки
void InfoItem(string sName, string sVal) {
  if ((sVal=="") || (sVal=="-")) return; if (sName!="") sName+= ": ";
  THmsScriptMediaItem Item = HmsCreateMediaItem(&apos;Info&apos;+IntToStr(PodcastItem.ChildCount), PodcastItem.ItemID);
  Item[mpiTitle     ] = sName+sVal;
  Item[mpiThumbnail ] = &apos;http://wonky.lostcut.net/vids/info.jpg&apos;;
  Item[mpiTimeLength] = 20;
  Item[mpiCreateDate] = VarToStr(IncTime(gStart,0,-gnTotalItems,0,0));
  Item[mpiTranscodingActive ] = true;
  Item[mpiTranscodingProfile] = "Фильмы (основной)";
  gnTotalItems++;
}

///////////////////////////////////////////////////////////////////////////////
// Формирование видео с картинкой с информацией о фильме
bool VideoPreview() {
  string sFileImage, sID="", sCacheDir=IncludeTrailingBackslash(HmsTempDirectory)+&apos;hdgo/&apos;;;
  TJsonObject VIDEO = TJsonObject.Create();
  try {
    VIDEO.LoadFromString(PodcastItem.ItemParent[mpiJsonInfo]);
    sID = VIDEO.S["id"];
  } finally { VIDEO.Free; }
  if (sID!="") {
    ForceDirectories(sCacheDir);
    sFileImage = ExtractShortPathName(sCacheDir)+&apos;videopreview_&apos;; // Файл-заготовка для сохранения картинки
    HmsDownloadURLToFile(gsAPIUrl+"infopic?id="+sID, sFileImage);
    // Копируем и нумеруем файл картики столько раз, сколько секунд мы будем её показывать
    for (int n=1; n&lt;=20; n++) CopyFile(sFileImage, sFileImage+Format(&apos;%.3d.jpg&apos;, [n]), false);
    // Для некоторых телевизоров (Samsung) видео без звука отказывается проигрывать, поэтому скачиваем звук тишины
    string sFileMP3 = ExtractShortPathName(HmsTempDirectory)+&apos;\\silent.mp3&apos;;
    try {
      if (!FileExists(sFileMP3)) HmsDownloadURLToFile(&apos;http://wonky.lostcut.net/mp3/silent.mp3&apos;, sFileMP3);
      sFileMP3 = &apos;-i "&apos;+sFileMP3+&apos;"&apos;;
    } except { sFileMP3=&apos;&apos;; }
    // Формируем из файлов пронумерованных картинок и звукового команду для формирования видео
    MediaResourceLink = Format(&apos;%s -f image2 -r 1 -i "%s" -c:v libx264 -pix_fmt yuv420p &apos;, [sFileMP3, sFileImage+&apos;%03d.jpg&apos;]);
  }
}

///////////////////////////////////////////////////////////////////////////////
// Получение ссылки на Youtube
void GetLink_Youtube31(string sLink) {
  string sData, sVideoID=&apos;&apos;, sMaxHeight=&apos;&apos;, sAudio=&apos;&apos;, sSubtitlesLanguage=&apos;ru&apos;,
  sSubtitlesUrl, sFile, sVal, sMsg, sConfig, sHeaders, ttsDef; 
  TJsonObject JSON; TRegExpr RegEx;
  
  sHeaders = &apos;Referer: &apos;+sLink+#13#10+
             &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36&apos;+#13#10+
             &apos;Origin: http://www.youtube.com&apos;+#13#10;
  
  HmsRegExMatch(&apos;--maxheight=(\\d+)&apos;    , mpPodcastParameters, sMaxHeight);
  HmsRegExMatch(&apos;--sublanguage=(\\w{2})&apos;, mpPodcastParameters, sSubtitlesLanguage);
  bool bSubtitles = (Pos(&apos;--subtitles&apos;  , mpPodcastParameters)&gt;0);  
  bool bAdaptive  = (Pos(&apos;--adaptive&apos;   , mpPodcastParameters)&gt;0);  
  bool bNotDE     = (Pos(&apos;notde=1&apos;      , sLink)&gt;0);  
  
  if (!HmsRegExMatch(&apos;[\\?&amp;]v=([^&amp;]+)&apos;       , sLink, sVideoID))
    if (!HmsRegExMatch(&apos;youtu.be/([^&amp;]+)&apos;      , sLink, sVideoID))
    HmsRegExMatch(&apos;/(?:embed|v)/([^\\?]+)&apos;, sLink, sVideoID);
  
  if (sVideoID==&apos;&apos;) { HmsLogMessage(2, &apos;Невозможно получить Video ID в ссылке Youtube&apos;); return; }
  
  sLink = &apos;http://www.youtube.com/watch?v=&apos;+sVideoID+&apos;&amp;hl=ru&amp;persist_hl=1&amp;has_verified=1&apos;;
  
  sData = HmsDownloadURL(sLink, sHeaders, true);
  sData = HmsRemoveLineBreaks(sData);
  // Если еще не установлена реальная длительность видео - устанавливаем
  if ((Trim(mpTimeLength)==&apos;&apos;) || (RightCopy(mpTimeLength, 6)==&apos;00.000&apos;)) {
    if (HmsRegExMatch2(&apos;itemprop="duration"[^&gt;]+content="..(\\d+)M(\\d+)S&apos;, sData, sVal, sMsg)) {
      PodcastItem[mpiTimeLength] = StrToInt(sVal)*60+StrToInt(sMsg);
    } else {
      sVal = HmsDownloadURL(&apos;http://www.youtube.com/get_video_info?html5=1&amp;c=WEB&amp;cver=html5&amp;cplayer=UNIPLAYER&amp;hl=ru&amp;video_id=&apos;+sVideoID, sHeaders, true);
      if (HmsRegExMatch(&apos;length_seconds=(\\d+)&apos;, sData, sMsg))
        PodcastItem[mpiTimeLength] = StrToInt(sMsg);
    }
  }
  if (!HmsRegExMatch(&apos;player.config\\s*?=\\s*?({.*?});&apos;, sData, sConfig)) {
    // Если в загруженной странице нет нужной информации, пробуем немного по-другому
    sLink = &apos;http://hms.lostcut.net/youtube/g.php?v=&apos;+sVideoID;
    if (sMaxHeight!=&apos;&apos;                  ) sLink += &apos;&amp;max_height=&apos;+sMaxHeight;
    if (Trim(mpPodcastMediaFormats )!=&apos;&apos;) sLink += &apos;&amp;media_formats=&apos;+mpPodcastMediaFormats;
    if (bAdaptive                       ) sLink += &apos;&amp;adaptive=1&apos;;
    sData = HmsUtf8Decode(HmsDownloadUrl(sLink));
    if (HmsRegExMatch(&apos;"reason":"(.*?)"&apos; , sData, sMsg)) { 
      HmsLogMessage(2 , sMsg); 
      return; 
    } else {
      sData = HmsJsonDecode(sData);
      HmsRegExMatch(&apos;"url":"(.*?)"&apos;, sData, MediaResourceLink);
    }
  }
  
  String hlsUrl, ttsUrl, flp, jsUrl, dashMpdLink, streamMap, playerId, algorithm;
  String sType, itag, sig, alg, s;
  String UrlBase = "";
  int  i, n, w, num, height, priority, minPriority = 90, selHeight, maxHeight = 1080;
  bool is3D; 
  TryStrToInt(sMaxHeight, maxHeight);
  JSON = TJsonObject.Create();
  try {
    JSON.LoadFromString(sConfig);
    hlsUrl      = HmsExpandLink(JSON.S[&apos;args\\hlsvp&apos; ], UrlBase);
    ttsUrl      = HmsExpandLink(JSON.S[&apos;args\\caption_tracks&apos;], UrlBase);
    flp         = HmsExpandLink(JSON.S[&apos;url&apos;         ], UrlBase);
    jsUrl       = HmsExpandLink(JSON.S[&apos;assets\\js&apos;  ], UrlBase);
    streamMap   = JSON.S[&apos;args\\url_encoded_fmt_stream_map&apos;];
    if (bAdaptive &amp;&amp; JSON.B[&apos;args\\adaptive_fmts&apos;]) 
      streamMap = JSON.S[&apos;args\\adaptive_fmts&apos;];
    if ((streamMap==&apos;&apos;) &amp;&amp; (hlsUrl==&apos;&apos;)) {
      sMsg = "Невозможно найти данные для воспроизведения на странице видео.";
      if (HmsRegExMatch(&apos;(&lt;h\\d[^&gt;]+class="message".*?&lt;/h\\d&gt;)&apos;, sData, sMsg)) sMsg = HmsUtf8Decode(HmsHtmlToText(sMsg));
      HmsLogMessage(2, sMsg);
      return;
    }
  } finally { JSON.Free; }
  if (Copy(jsUrl, 1, 2)==&apos;//&apos;) jsUrl = &apos;http:&apos;+Trim(jsUrl);
  HmsRegExMatch(&apos;/player-([\\w_-]+)/&apos;, jsUrl, playerId);
  algorithm = HmsDownloadURL(&apos;https://hms.lostcut.net/youtube/getalgo.php?jsurl=&apos;+HmsHttpEncode(jsUrl));
  
  if (hlsUrl!=&apos;&apos;) {
    MediaResourceLink = &apos; &apos;+hlsUrl;
    
    sData = HmsDownloadUrl(sLink, sHeaders, true);
    RegEx = TRegExpr.Create(&apos;BANDWIDTH=(\\d+).*?RESOLUTION=(\\d+)x(\\d+).*?(http[^#]*)&apos;, PCRE_SINGLELINE);
    try {
      if (RegEx.Search(sData)) do {
        sLink = &apos;&apos; + RegEx.Match(4);
        height = StrToIntDef(RegEx.Match(3), 0);
        if (mpPodcastMediaFormats!=&apos;&apos;) {
          priority = HmsMediaFormatPriority(height, mpPodcastMediaFormats);
          if ((priority&gt;=0) &amp;&amp; (priority&gt;minPriority)) {
            MediaResourceLink = sLink; minPriority = priority;
          }
        } else if ((height &gt; selHeight) &amp;&amp; (height &lt;= maxHeight)) {
          MediaResourceLink = sLink; selHeight = height;
        }
      } while (RegEx.SearchAgain());
    } finally { RegEx.Free(); }
    
  } else if (streamMap!=&apos;&apos;) {
    i=1; while (i&lt;=Length(streamMap)) {
      sData = Trim(ExtractStr(streamMap, &apos;,&apos;, i));
      sType = HmsHttpDecode(ExtractParam(sData, &apos;type&apos;, &apos;&apos;, &apos;&amp;&apos;));
      itag  = ExtractParam(sData, &apos;itag&apos;    , &apos;&apos;, &apos;&amp;&apos;);
      is3D  = ExtractParam(sData, &apos;stereo3d&apos;, &apos;&apos;, &apos;&amp;&apos;) == &apos;1&apos;;
      sLink = &apos;&apos;;
      if (Pos(&apos;url=&apos;, sData)&gt;0) {
        sLink = &apos; &apos; + HmsHttpDecode(ExtractParam(sData, &apos;url&apos;, &apos;&apos;, &apos;&amp;&apos;));
        if (Pos(&apos;&amp;signature=&apos;, sLink)==0) {
          sig = HmsHttpDecode(ExtractParam(sData, &apos;sig&apos;, &apos;&apos;, &apos;&amp;&apos;));    
          if (sig==&apos;&apos;) {
            sig = HmsHttpDecode(ExtractParam(sData, &apos;s&apos;, &apos;&apos;, &apos;&amp;&apos;));
            for (w=1; w&lt;=WordCount(algorithm, &apos; &apos;); w++) {
              alg = ExtractWord(w, algorithm, &apos; &apos;);
              if (Length(alg)&lt;1) continue;
              if (Length(alg)&gt;1) TryStrToInt(Copy(alg, 2, 4), num);
              if (alg[1]==&apos;r&apos;) {s=&apos;&apos;; for(n=Length(sig); n&gt;0; n--) s+=sig[n]; sig = s;   } // Reverse
              if (alg[1]==&apos;s&apos;) {sig = Copy(sig, num+1, Length(sig));                     } // Clone
              if (alg[1]==&apos;w&apos;) {n = (num-Trunc(num/Length(sig)))+1; Swap(sig[1], sig[n]);} // Swap
            }
          }
          if (sig!=&apos;&apos;) sLink += &apos;&amp;signature=&apos; + sig;
        }
      }
      if (itag in ([139,140,141,171,172])) { sAudio = sLink; continue; }
      if (sLink!=&apos;&apos;) {
        height = 0; //http://www.genyoutube.net/formats-resolution-youtube-videos.html
        if      (itag in ([13,17,160                  ])) height = 144;
        else if (itag in ([5,36,92,132,133,242        ])) height = 240;
        else if (itag in ([6                          ])) height = 270;
        else if (itag in ([18,34,43,82,100,93,134,243 ])) height = 360;
        else if (itag in ([35,44,83,101,94,135,244,43 ])) height = 480;
        else if (itag in ([22,45,84,102,95,136,298,247])) height = 720;
        else if (itag in ([37,46,85,96,137,248,299    ])) height = 1080;
        else if (itag in ([264,271                    ])) height = 1440;
        else if (itag in ([266,138                    ])) height = 2160;
        else if (itag in ([272                        ])) height = 2304;
        else if (itag in ([38                         ])) height = 3072;
        else continue;
        if (mpPodcastMediaFormats!=&apos;&apos;) {
          priority = HmsMediaFormatPriority(height, mpPodcastMediaFormats);
          if ((priority&gt;=0) || (priority&lt;minPriority)) {
            MediaResourceLink = sLink; minPriority = priority; selHeight = height;
          }
        } else if ((height&gt;selHeight) &amp;&amp; (height&lt;= maxHeight)) {
          MediaResourceLink = sLink; selHeight = height;
          
        } else if ((height&gt;=selHeight) &amp;&amp; (height&lt;= maxHeight) &amp;&amp; (itag in ([18,22,37,38,82,83,84,85]))) {
          // Если выоста такая же, но формат MP4 - то выбираем именно его (делаем приоритет MP4)
          MediaResourceLink = sLink; selHeight = height;
        }
      }
    }
    if (bAdaptive &amp;&amp; (sAudio!=&apos;&apos;)) MediaResourceLink = &apos;-i "&apos;+Trim(MediaResourceLink)+&apos;" -i "&apos;+Trim(sAudio)+&apos;"&apos;;
    
  }
  // Если есть субтитры и в дополнительных параметрах указано их показывать - загружаем 
  if (bSubtitles &amp;&amp; (ttsUrl!=&apos;&apos;)) {
    string sTime1, sTime2; float nStart, nDur;
    sLink = &apos;&apos;; n = WordCount(ttsUrl, &apos;,&apos;);
    for (i=1; i &lt;= n; i++) {
      sData = ExtractWord(i, ttsUrl, &apos;,&apos;);
      sType = HmsPercentDecode(ExtractParam(sData, &apos;lc&apos;, &apos;&apos;, &apos;&amp;&apos;));
      sVal  = HmsPercentDecode(ExtractParam(sData, &apos;u&apos; , &apos;&apos;, &apos;&amp;&apos;));
      if (sType == &apos;en&apos;) sLink = sVal;
      if (sType == sSubtitlesLanguage) { sLink = sVal; break; }
    }
    if (sLink != &apos;&apos;) {
      sData = HmsDownloadURL(sLink, sHeaders, true);
      sMsg  = &apos;&apos;; i = 0;
      RegEx = TRegExpr.Create(&apos;(&lt;(text|p).*?&lt;/(text|p)&gt;)&apos;, PCRE_SINGLELINE); // Convert to srt format
      try {
        if (RegEx.Search(sData)) do {
          if      (HmsRegExMatch(&apos;start="([\\d\\.]+)&apos;, RegEx.Match, sVal)) nStart = StrToFloat(ReplaceStr(sVal, &apos;.&apos;, &apos;,&apos;))*1000;
          else if (HmsRegExMatch(&apos;t="(\\d+)&apos;         , RegEx.Match, sVal)) nStart = StrToFloat(sVal);
          if      (HmsRegExMatch(&apos;dur="([\\d\\.]+)&apos;  , RegEx.Match, sVal)) nDur   = StrToFloat(ReplaceStr(sVal, &apos;.&apos;, &apos;,&apos;))*1000;
          else if (HmsRegExMatch(&apos;d="(\\d+)&apos;         , RegEx.Match, sVal)) nDur   = StrToFloat(sVal);
          sTime1 = HmsTimeFormat(Int(nStart/1000))+&apos;,&apos;+RightCopy(Str(nStart), 3);
          sTime2 = HmsTimeFormat(Int((nStart+nDur)/1000))+&apos;,&apos;+RightCopy(Str(nStart+nDur), 3);
          sMsg += Format("%d\n%s --&gt; %s\n%s\n\n", [i, sTime1, sTime2, HmsHtmlToText(HmsHtmlToText(RegEx.Match(0), 65001))]);
          i++;
        } while (RegEx.SearchAgain());
      } finally { RegEx.Free(); }
      sFile = HmsSubtitlesDirectory+&apos;\\Youtube\\&apos;+PodcastItem.ItemID+&apos;.&apos;+sSubtitlesLanguage+&apos;.srt&apos;;
      HmsStringToFile(sMsg, sFile);
      PodcastItem[mpiSubtitleLanguage] = sFile;
    }
  }
}

///////////////////////////////////////////////////////////////////////////////
// Получение реальной ссылки на поток с сайта vio.to
void GetLink_vioto(string sLink) {
  string sHtml = HmsDownloadURL(sLink, &apos;Referer: &apos;+mpFilePath, true); 
  if (HmsRegExMatch("url:\\s*&apos;(.*?)&apos;", sHtml, sLink))
    sLink = HmsExpandLink(sLink, &apos;https:&apos;);
    MediaResourceLink = &apos;&apos;+sLink;
}

///////////////////////////////////////////////////////////////////////////////
string DetectQualityIndex() {
  string sQual, sSelectedQual="", sVal;
  HmsRegExMatch("--quality=(\\w+)", mpPodcastParameters, sQual);
  if      (sQual=="low"   ) sSelectedQual = "?q=1";
  else if (sQual=="medium") sSelectedQual = "?q=3";
  else if (HmsRegExMatch("(\\d+)", sQual, sVal)) {
    extended minDiff = 999999; // search nearest quality
    Variant  aQualList = [360,480,720,1080];
    for (int i=0; i &lt; Length(aQualList); i++) {
      extended diff = aQualList[i] - StrToInt(sVal);
      if (Abs(diff) &lt; minDiff) {
        minDiff = Abs(diff);
        sSelectedQual = "?q="+IntToStr(i+1);
      }
    }
  } else sSelectedQual = "";
  return sSelectedQual;
}

///////////////////////////////////////////////////////////////////////////////
// Создание ссылок на список переводов или сезонов с сериями с hdgo.cc
void CreateHdgoLinks(string sLink) {
  string sData, sName, sID, sVal, sGrp, sQual, sImg, sSelectedQual;
  THmsScriptMediaItem Item; int i, n, nTime;
  TJsonObject JSON, HDGO, SEASON, EPISODE; TJsonArray SEASONS, EPISODES; 
  
  if (!HmsRegExMatch(".*/(\\d+)", sLink, sID)) return;
  
  // Дополнительные параметры
  HmsRegExMatch("--quality=(\\w+)", mpPodcastParameters, sQual);
  bool bDirectLinks = (Pos("--directlinks", mpPodcastParameters)&gt;0);
  
  JSON = TJsonObject.Create();
  HDGO = TJsonObject.Create();
  try {
    JSON.LoadFromString(PodcastItem[mpiJsonInfo]);
    nTime = JSON.I["time"];
    if (JSON.B["isserial"]) {
      sData = HmsUtf8Decode(HmsDownloadURL(gsAPIUrl+"series?id="+JSON.S["id"]));
      HDGO.LoadFromString(sData);
      SEASONS = HDGO.AsArray;
      bool bNoSeasons = (SEASONS.Length==1) &amp;&amp; (SEASONS[0].S["name"]=="Сезон 01");
      for (i=0; i &lt; SEASONS.Length; i++) {
        SEASON = SEASONS[i];
        if (bNoSeasons) sGrp = "";
        else            sGrp = SEASON.S["name"];
        EPISODES = SEASON.A["episodes"];
        for (n=0; n &lt; EPISODES.Length; n++) {
          EPISODE = EPISODES[n];
          sLink = EPISODE.S["link" ];
          sName = EPISODE.S["name" ];
          sImg  = EPISODE.S["image"];
          if (LeftCopy(sLink, 2)==&apos;//&apos;) sLink = &apos;http:&apos;+Trim(sLink);
          if (bDirectLinks)
            sLink = GetMP4LinkHdgo(sLink);
          CreateMediaItem(PodcastItem, sName, sLink, sImg, sGrp, nTime);
        }
      }
      
    } else {
      sName = JSON.S["name"];
      sLink = mpFilePath;
      if (sQual=="all") {
        sData = LoadHdgoHtml(sLink, "");
        TRegExpr RE = TRegExpr.Create("url:\\s*&apos;(.*?)&apos;", PCRE_SINGLELINE);
        if (RE.Search(sData)) do {
          sLink = RE.Match(); sVal="";
          if (LeftCopy(sLink, 2)==&apos;//&apos;) sLink = &apos;http:&apos;+Trim(sLink);
          HmsRegExMatch("/(\\d)/", sLink, sVal);
          if      (sVal=="1") sName = "[360p] "+JSON.S["name"];
          else if (sVal=="2") sName = "[480p] "+JSON.S["name"];
          else if (sVal=="3") sName = "[720p] "+JSON.S["name"];
          else if (sVal=="4") sName = "[1080p] "+JSON.S["name"];
          sLink = GetMP4LinkHdgo(sLink, true);
          CreateMediaItem(PodcastItem, sName, sLink, mpThumbnail, "", nTime);
        } while (RE.SearchAgain); else {
          ErrorItem("Video not found!");
        }
        
      } else {
        sSelectedQual = DetectQualityIndex();
        sLink += sSelectedQual;
        if (bDirectLinks)
          sLink = GetMP4LinkHdgo(sLink);
        CreateMediaItem(PodcastItem, sName, sLink, mpThumbnail, "", nTime);
      }
    }    
  } finally { JSON.Free; HDGO.Free; }
}

///////////////////////////////////////////////////////////////////////////////
void CreateInfoLinks() {
  string sID, sImg; int nTime = 210;
  // Создание информационных ссылок
  if (Pos(&apos;--infoitems&apos;, mpPodcastParameters) &gt; 0) {
    TJsonObject VIDEO = TJsonObject.Create();
    try {
      VIDEO.LoadFromString(PodcastItem[mpiJsonInfo]);
      if (VIDEO.B["kpid" ]) sImg = &apos;https://st.kp.yandex.net/images/film_iphone/iphone360_&apos;+VIDEO.S["kpid"]+&apos;.jpg&apos;;
      if (VIDEO.B["image"]) sImg = &apos;https://st.kp.yandex.net/images/&apos;+VIDEO.S["image"];
      if (VIDEO.B["trailer_hd" ]) CreateMediaItem(PodcastItem, &apos;Трейлер HD&apos; , VIDEO.S["trailer_hd" ], sImg, "", nTime);
      if (VIDEO.B["trailer_sd" ]) CreateMediaItem(PodcastItem, &apos;Трейлер SD&apos; , VIDEO.S["trailer_sd" ], sImg, "", nTime);
      if (!VIDEO.B["trailer_hd"] &amp;&amp; !VIDEO.B["trailer_sd"] &amp;&amp; VIDEO.B["yt"]) {
        sImg = "https://img.youtube.com/vi/"+VIDEO.S["yt"]+"/sddefault.jpg";
        CreateMediaItem(PodcastItem, &apos;Трейлер (youtube)&apos;, "https://www.youtube.com/watch?v="+VIDEO.S["yt"], sImg, "", nTime);
      }
      InfoItem(&apos;Жанр&apos;    , VIDEO.S["genre"   ]);
      if (VIDEO.I["year"]!=0) InfoItem(&apos;Год&apos;, VIDEO.S["year"]);
      InfoItem(&apos;Страна&apos;  , VIDEO.S["country" ]);
      InfoItem(&apos;Перевод&apos; , VIDEO.S["translator"]);
      InfoItem(&apos;Режиссёр&apos;, VIDEO.S["director"]);
      if (VIDEO.B["rating_kp"  ]) InfoItem(&apos;Рейтинг КП&apos;  , VIDEO.S["rating_kp"  ]+&apos; (&apos;+VIDEO.S["rating_kp_votes"  ]+&apos;)&apos;);
      if (VIDEO.B["rating_imdb"]) InfoItem(&apos;Рейтинг IMDb&apos;, VIDEO.S["rating_imdb"]+&apos; (&apos;+VIDEO.S["rating_imdb_votes"]+&apos;)&apos;);
      InfoItem(&apos;Качество&apos;, VIDEO.S["quality"   ]);
    } finally { VIDEO.Free; }
  }
}

///////////////////////////////////////////////////////////////////////////////
string LoadHdgoHtml(string sLink, string &amp;sReferer) {
  string sHtml; HmsRegExMatch("(https?://.*?/)", sLink, sReferer);
  sHtml = HmsDownloadURL(sLink, "Referer: http://hdgo.cc");
  if (HmsRegExMatch(&apos;[^\&apos;]&lt;iframe[^&gt;]+src="(.*?)"&apos;, sHtml, sLink)) {
    if (LeftCopy(sLink, 2)=="//") sLink = "http:"+Trim(sLink);
    HmsRegExMatch("(https?://.*?/)", sLink, sReferer);
    sHtml = HmsDownloadURL(sLink, "Referer: http://hdgo.cc");
  }
  if (!HmsRegExMatch("url:\\s*&apos;(http|//)", sHtml, &apos;&apos;) &amp;&amp; HmsRegExMatch(&apos;&lt;iframe[^&gt;]+src="(.*?)"&apos;, sHtml, sLink)) {
    if (LeftCopy(sLink, 2)=="//") sLink = "http:"+Trim(sLink);
    HmsRegExMatch("(https?://.*?/)", sLink, sReferer);
    sHtml = HmsDownloadURL(sLink, "Referer: "+sLink);
  }
  return sHtml;
}

///////////////////////////////////////////////////////////////////////////////
string GetMP4LinkHdgo(string sLink, bool bNotLoadHtml = false) {
  string sHtml, sServer, sPage, sRet, sMp4Link, sQual, sReferer;
  HmsRegExMatch("(https?://.*?/)", sLink, sReferer);
  if (!HmsRegExMatch("q=(\\d)", sLink, sQual)) {
    sQual = DetectQualityIndex();
    HmsRegExMatch("q=(\\d)", sQual, sQual);
  }
  int INTERNET_FLAG_NO_AUTO_REDIRECT = 0x00200000;
  if (bNotLoadHtml) {
    sMp4Link = sLink;
  } else {
    sMp4Link = ""; sHtml = LoadHdgoHtml(sLink, sReferer);
    if (sQual!="") HmsRegExMatch("url:\\s*&apos;([^&apos;]+/"+sQual+"/.*?)&apos;", sHtml, sMp4Link, 1, PCRE_SINGLELINE);
    if (sMp4Link=="") HmsRegExMatch(".*url:\\s*&apos;(.*?)&apos;", sHtml, sMp4Link, 1, PCRE_SINGLELINE);
  }
  HmsRegExMatch2("//(.*?)(/.*)", sMp4Link, sServer, sPage);
  HmsSendRequestEx(sServer, sPage, "HEAD", "", sReferer, "", 80, INTERNET_FLAG_NO_AUTO_REDIRECT, sRet, true);
  HmsRegExMatch("Location:(.*?)[\r\n]", sRet, sLink);
  return sLink;
}

///////////////////////////////////////////////////////////////////////////////
//                     Г Л А В Н А Я   П Р О Ц Е Д У Р А                     //
{
  if (PodcastItem.IsFolder) {
    CreateHdgoLinks(mpFilePath);
    CreateInfoLinks();
  } else {
    
    // Проверяем, это ссылка на html страницу серии/видео?
    if (Pos(&apos;vio.to/video/&apos;, mpFilePath)&gt;0) {
      GetLink_vioto(mpFilePath); // Тогда запускаем функцию получения реальной ссылки на поток
      return;
    }
    
    if (HmsFileMediaType(mpFilePath)==mtVideo)
      MediaResourceLink = mpFilePath;
    else if (LeftCopy(mpFilePath, 4)==&apos;-Fav&apos;)
      AddRemoveFavorites();
    else if (Pos("youtube", mpFilePath)&gt;0)
      GetLink_Youtube31(mpFilePath);
    else if (LeftCopy(mpFilePath, 4)==&apos;Info&apos;)
      VideoPreview();
    else
      MediaResourceLink = GetMP4LinkHdgo(mpFilePath);
  }
}</Value>
    </Property>
    <Property>
      <ID>551</ID>
      <Value>C++Script</Value>
    </Property>
    <Property>
      <ID>527</ID>
      <Value>--yearintitle --infoitems --quality=all</Value>
    </Property>
    <Property>
      <ID>100602</ID>
      <Value>1550414117</Value>
    </Property>
    <Property>
      <ID>100702</ID>
      <Value>07bb07149e320ab460c02d8b1cf2752f49aa28a8</Value>
    </Property>
    <Property>
      <ID>100701</ID>
      <Value>202f713287cb513397978dc28680c8cc820c3f63</Value>
    </Property>
    <Property>
      <ID>100704</ID>
      <Value>a3458bcd8d4c132c264b0cfabcca073bf66361d1</Value>
    </Property>
    <Property>
      <ID>50</ID>
      <Value>Фильмы (основной)_480x270</Value>
    </Property>
  </Properties>
  <ChildItems>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>2c7a3c2996cedb530dea0c8cb482b53c</ItemID>
      <ItemPath>favorites</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value> Избранное</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43232,1040996528</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425116</Value>
        </Property>
      </Properties>
      <ChildItems></ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>43494d10925ef98fe19d65d12e4f1304</ItemID>
      <ItemPath>01 Поиск</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43232,1034027778</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425116</Value>
        </Property>
        <Property>
          <ID>200104</ID>
          <Value>615b8af1edfa87c9d272937d8428bb19</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>32</ClassID>
          <ItemID>615b8af1edfa87c9d272937d8428bb19</ItemID>
          <ItemPath>-SearchCommands</ItemPath>
          <ParentID>43494d10925ef98fe19d65d12e4f1304</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>"Набрать текст"</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,1034375</Value>
            </Property>
            <Property>
              <ID>200</ID>
              <Value>5</Value>
            </Property>
            <Property>
              <ID>500</ID>
              <Value>// Var 21.12.2014
int mpiFolderType        = 200;
int mpiDynamicScript     = 500;
int mpiDynamicSyntaxType = 501;
int mpiPreviousItemID    = 200104;
int mpiDoNothing         = 201100;
char gsSpace           = &apos;Пробел&apos;;
char gsDelLastChar     = &apos;Удалить последний символ&apos;;
char gsClearSearch     = &apos;Очистить текст поиска&apos;;
char gsClearHystoryIn  = &apos;Очистить историю поиска в папке "%s"&apos;;
char gsMsgClearHistory = &apos;История поиска в папке "%s" очищена&apos;;
char gsMsgTextSaved    = &apos;Подкаст "%s" добавлен в "%s"&apos;;
char gsMsgNothingSaved = &apos;Текст поиска не набран! Добавлять нечего.&apos;;
char gsMsgSearchText   = &apos;Текст поиска: %s&apos;;
char gsAddSearchTo     = &apos;Добавить в папку "%s"&apos;;
char gsSuggestQuery    = &apos;http://api.lostcut.net/hdgo/videos?serials=2&amp;q=&apos;;
char gsSuggestResultCut= &apos;&apos;;
char gsSuggestRegExpr  = &apos;"name":"(.*?)"&apos;;
char gsSuggestMethod   = &apos;GET&apos;;
int  gnSuggestNoUTFEnc = 0;
char gsSuggestMessage  = &apos;Вариант: &apos;;
int gnTotalItems=0; TDateTime gTimeStart = Now; char gsTextSearch, gsMsg=&apos;&apos;;
THmsScriptMediaItem goRootItem, goCmdItem;
// ------------------------------------------ Создание папок команд поиска ----
void CreateSearchCommands() {
  int i; char sText; THmsScriptMediaItem Item;
  CreateDynamicItem(FolderItem, &apos;#&apos;,   &apos;-SearchCreateChars=From:32To:58&apos;);
  CreateDynamicItem(FolderItem, &apos;A-Z&apos;, &apos;-SearchCreateChars=From:65To:91&apos;);
  CreateDynamicItem(FolderItem, &apos;А-Я&apos;, &apos;-SearchCreateChars=From:192To:224&apos;);
  CreateDynamicItem(FolderItem, gsClearSearch, &apos;-SearchCmd=ClearSearchText&apos;);
  // Создание команды добавления в корневую папку поиска
  CreateDynamicItem(FolderItem, Format(gsAddSearchTo, [goRootItem[mpiTitle]]), &apos;-SearchCmd=SaveSearchText&apos;);
  // Создание команд добавления в папки, находящиеся в корневой, если поле "Файл" (mpiFilePath) у них пустое
  for (i=0; i&lt;goRootItem.ChildCount; i++) {
    Item = goRootItem.ChildItems[i];
    if (Item.ItemClassID!=51) continue;
    CreateDynamicItem(FolderItem, Format(gsAddSearchTo, [Item[mpiTitle]]), &apos;-SaveSearchTextTo=&apos;+Item.ItemID);
  }
  // Создание команды очистки истории в корневой папке поиска
  CreateDynamicItem(FolderItem, Format(gsClearHystoryIn, [goRootItem[mpiTitle]]), &apos;-SearchCmd=ClearSearchHistory&apos;);
  // Создание команд очистки истории в папках, которые наодятся в корневой
  for (i=0; i&lt;goRootItem.ChildCount; i++) {
    Item = goRootItem.ChildItems[i];
    if (Item.ItemClassID!=51) continue;
    CreateDynamicItem(FolderItem, Format(gsClearHystoryIn, [Item[mpiTitle]]), &apos;-ClearSearchHistoryIn=&apos;+Item.ItemID);
  }
  // Создание ссылки, информирующей о текущем набранном тексте поиска
  sText = Format(gsMsgSearchText, [gsTextSearch]);
  Item = HmsCreateMediaItem(sText, goCmdItem.ItemID);
  Item[mpiTitle    ] = sText;
  Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/search-icon1.jpg&apos;;
}
// ---------------------------- Добавление подкаста с именем текста поиска ----
void AddPodcastSearch(THmsScriptMediaItem prntItem) {
  THmsScriptMediaItem Item;
  if (Trim(gsTextSearch)==&apos;&apos;) {gsMsg = gsMsgNothingSaved; return;}
  if (LowerCase(gsTextSearch)==gsTextSearch) gsTextSearch = NameCase(gsTextSearch);
  Item = prntItem.AddFolder(gsTextSearch, false);
  Item[mpiFilePath ] = Format(&apos;search="%s"&apos;, [gsTextSearch]);
  Item[mpiTitle    ] = gsTextSearch;
  HmsDatabaseAutoSave(false);
  gsMsg = Format(gsMsgTextSaved, [gsTextSearch, prntItem[mpiTitle]]);
  //gsTextSearch = &apos;&apos;;
}
// --------- Функция создания динамической папки с унаследованным скриптом ----
void CreateDynamicItem(THmsScriptMediaItem prntItem, char sTitle, char sLink) {
char s; THmsScriptMediaItem Folder;
  if (Trim(sTitle)==&apos;&apos;) sTitle = gsSpace;
  Folder = prntItem.AddFolder(sLink, true);
  Folder[mpiTitle            ] = sTitle;
  Folder[mpiCreateDate       ] = VarToStr(IncTime(gTimeStart,0,-gnTotalItems,0,0)); gnTotalItems++;
  Folder[mpiFolderType       ] = prntItem[mpiFolderType];
  Folder[mpiDynamicScript    ] = prntItem[mpiDynamicScript];
  Folder[mpiDynamicSyntaxType] = prntItem[mpiDynamicSyntaxType];
  Folder[mpiFolderSortOrder  ] = prntItem[mpiFolderSortOrder];
}
// ----------------------------  MAIN PROCEDURE  ------------------------------
{
  int i, nCnt; char sCh, sCh1, sCh2, sText; THmsScriptMediaItem Item;
  char s, sUrlServer = &apos;&apos;, sRequestPage = &apos;/&apos;, sPostData = &apos;&apos;, sHeaders = &apos;&apos;;
  if (LeftCopy(mpFilePath, 1) != &apos;-&apos;) return; // Если это не команда - то и не обрабатываем
  // Поиск корневого каталога поиска (папки, которая содержит динамическую папку с путем "-SearchCommands")
  goRootItem = FolderItem; goCmdItem = FolderItem;
  while ((goRootItem.ItemParent != HmsDatabaseRootItem) &amp;&amp; (goRootItem.ItemParent != nil)) {
    if (goRootItem[mpiFilePath] == &apos;-SearchCommands&apos;) {goCmdItem=goRootItem; goRootItem=goCmdItem.ItemParent; break;}
    goRootItem = goRootItem.ItemParent;
  }
  // Если это повторный вызов, смены папки не произошло - ничего не делаем
  if ((FolderItem.ItemID==goRootItem[mpiPreviousItemID]) &amp;&amp; !DebugMode &amp;&amp; (FolderItem!=goCmdItem)) return;
  FolderItem.DeleteChildItems(); goRootItem[mpiPreviousItemID] = FolderItem.ItemID;
  gsTextSearch = HmsGetUserSearchText(); // Получаем текущее значение текста поиска
  // ---- Проверяем команды - по значению в mpFilePath ----
  if (goRootItem[mpiDoNothing]==&apos;1&apos;) {   // Флаг "Ничего не делать" - например, при возврате
    goRootItem[mpiDoNothing] = &apos;&apos;;       //   в команду набирания буквы из подпапки варианта
  } else if (HmsRegExMatch(&apos;-SearchCommands&apos;, mpFilePath, sCh1)) {              // Создание корневых команд поиска
    CreateSearchCommands(); return;
  } else if (HmsRegExMatch(&apos;-SearchChar=(\\d+)&apos;, mpFilePath, sCh1)) {           // Добавление буквы (символа) к набираемому тексту поиска
    gsTextSearch += Chr(StrToInt(sCh1));
  } else if (HmsRegExMatch(&apos;-SetSearchText=(.*)&apos;, mpFilePath, gsTextSearch)) {  // Назначить текст поиска значением варианта подсказки
    goRootItem[mpiDoNothing] = &apos;1&apos;; gsSuggestQuery = &apos;&apos;; // включаем флаг не выполнять команду при возврате из этой папки
  } else if (HmsRegExMatch(&apos;-SaveSearchTextTo=(.*)&apos;, mpFilePath, sCh1)) {       // Добавление в папку Х. Поиск этой папки по ItemID.
    Item = goRootItem; // Ищем папку с ItemID равному идентификатору, переданному в mpFilePath
    for (i=0; i&lt;goRootItem.ChildCount; i++) {
      if (goRootItem.ChildItems[i].ItemID==sCh1) {Item = goRootItem.ChildItems[i]; break;}
    }
    AddPodcastSearch(Item); // и добавляем в найденную папку подкаст текстом поиска
  } else if (HmsRegExMatch(&apos;-ClearSearchHistoryIn=(.*)&apos;, mpFilePath, sCh1)) {   // Очистка истории (добавленных ранее) поисковых значений
    Item = goRootItem; // Ищем папку с ItemID равному идентификатору, переданному в mpFilePath
    for (i=0; i&lt;goRootItem.ChildCount; i++) {
      if (goRootItem.ChildItems[i].ItemID==sCh1) {Item = goRootItem.ChildItems[i]; break;}
    }
    for(i=0; i&lt;Item.ChildCount; i++) { // Удаляем все элементы с начинающимся словом &apos;search&apos; в поле mpiFilePath
      if (LeftCopy(Item.ChildItems[i].Properties[mpiFilePath], 6)==&apos;search&apos;) {Item.ChildItems[i].Delete();i--;}
    }
    gsMsg = Format(gsMsgClearHistory, [Item[mpiTitle]]); // вывод сообщения, что история очищена
  } else if (HmsRegExMatch(&apos;-SearchCmd=(\\w+)&apos;,   mpFilePath, sCh1)) {
    if      (sCh1==&apos;DeleteLastChar&apos; ) gsTextSearch = LeftCopy(gsTextSearch, Length(gsTextSearch)-1); // Удаление последнего символа
    else if (sCh1==&apos;SaveSearchText&apos; ) AddPodcastSearch(goRootItem);             // Добавить текст поиска в корневую папку
    else if (sCh1==&apos;ClearSearchText&apos;) gsTextSearch = &apos;&apos;;                        // Очистка текста поиска
    else if (sCh1==&apos;ClearSearchHistory&apos;) {                                      // Очистка истории (добавленных значений поиска)
      for(i=0; i&lt;goRootItem.ChildCount; i++) {
        Item = goRootItem.ChildItems[i]; // Ищем все элементы, у которых значение mpiFilePath начиначется с &apos;search&apos;
        if (LeftCopy(Item[mpiFilePath], 6)==&apos;search&apos;) {goRootItem.ChildItems[i].Delete();i--;}
      }
      gsMsg = Format(gsMsgClearHistory, [goRootItem[mpiTitle]]);
    }
  } else if (HmsRegExMatch2(&apos;-SearchCreateChars=From:(\\d+)To:(\\d+)&apos;, mpFilePath, sCh1, sCh2)) { // Создание списка букв/символов
    CreateDynamicItem(FolderItem, gsDelLastChar, &apos;-SearchCmd=DeleteLastChar Suggestions&apos;); // В начало - команда удаления символа
    CreateDynamicItem(FolderItem, &apos; &apos;, &apos;-SearchChar=32 Suggestions&apos;); // Пробел
    for (i= StrToInt(sCh1); i&lt;StrToInt(sCh2); i++) CreateDynamicItem(FolderItem, Chr(i), &apos;-SearchChar=&apos;+IntToStr(i)+&apos; Suggestions&apos;);
    // слово "Suggestions" добавлено к значению mpiFilePath тек команд, в которых возможно использование подсказок
  }
  else return; // Если неизвестная нам команда - просто выходим
  HmsSetUserSearchText(gsTextSearch); // Устанавливаем значение текста поиска
  Item = HmsCreateMediaItem(&apos;-command=none&apos;, FolderItem.ItemID);
  if (gsMsg==&apos;&apos;) { // Если сообщения небыло - просто выводим ссылку с текущим значением набранного текста
    Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/search-icon1.jpg&apos;;
    Item[mpiFilePath ] = Format(gsMsgSearchText, [gsTextSearch]);
  } else {         // Выводим сообщение
    Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/ok.png&apos;;
    Item[mpiFilePath ] = gsMsg;
  }
  Item = HmsCreateMediaItem(&apos;-command=none&apos;, FolderItem.ItemParent.ItemID);     // В родительской папке (выше) обновляем информацию о текущем значении текста
  Item[mpiFilePath]  = Format(gsMsgSearchText, [gsTextSearch]);
  Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/search-icon1.jpg&apos;;
  Item = HmsCreateMediaItem(&apos;-command=none&apos;, goCmdItem.ItemID);                 // Также в папке, содержащую главные команды поиска
  Item[mpiFilePath]  = Format(gsMsgSearchText, [gsTextSearch]);
  Item[mpiThumbnail] = &apos;http://wonky.lostcut.net/icons/search-icon1.jpg&apos;;
  // Suggestions ------ Блок работы с подсказками -------
  if ((gsSuggestQuery!=&apos;&apos;) &amp;&amp; (Pos(&apos;Suggestions&apos;, mpFilePath)&gt;0) &amp;&amp; (Length(gsTextSearch)&gt;1) &amp;&amp; !HmsRegExMatch("^\\s", gsTextSearch, "")) {
    int nPort = 80; if (LeftCopy(gsSuggestQuery, 5)=="https") nPort = 443;
    sText = gsTextSearch; if (gnSuggestNoUTFEnc==0) sText = HmsUtf8Encode(sText); // Если не указано не кодировать в UTF - кодируем
    sText = HmsHttpEncode(sText); string sUrlBase;
    // Если есть ключ &lt;TEXT&gt; в запросе - заменяем его на значение набранного текста, иначе просто добавляем в конец
    if (Pos(&apos;&lt;TEXT&gt;&apos;, gsSuggestQuery)&gt;0) gsSuggestQuery = ReplaceStr(gsSuggestQuery, &apos;&lt;TEXT&gt;&apos;, sText);
    else gsSuggestQuery = gsSuggestQuery + sText;
    HmsRegExMatch3(&apos;(https?://(.*?))(/.*)&apos;, gsSuggestQuery, sUrlBase, sUrlServer, sRequestPage);
    if (gsSuggestMethod==&apos;POST&apos;) HmsRegExMatch2(&apos;^(.*?)\\?(.*)&apos;, sRequestPage, sRequestPage, sPostData);
    sHeaders = sUrlBase+&apos;/\r\n&apos;+
               &apos;Accept-Encoding: gzip, deflate\r\n&apos;+
               &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:13.0) Gecko/20100101 Firefox/13.0\r\n&apos;+
               &apos;Connection: Keep-Alive\r\n&apos;+
               &apos;Origin: &apos;+sUrlBase+&apos;/\r\n&apos;+
               &apos;Accept: application/json, text/javascript, */*; q=0.01\r\n&apos;;    // Для включения возможности gzip в запросах
    sText = HmsSendRequestEx(sUrlServer, sRequestPage, gsSuggestMethod, &apos;application/x-www-form-urlencoded; Charset=UTF-8&apos;, sHeaders, sPostData, nPort, 0x10, &apos;&apos;, true);
    sText = HmsUtf8Decode(sText);
    if (gsSuggestResultCut!=&apos;&apos;) HmsRegExMatch(gsSuggestResultCut, sText, sText);// Если есть выражение обрезки - обрезаем
    sText = HmsJsonDecode(sText); TRegExpr t = TRegExpr.Create(&apos;(&lt;[^&gt;]+&gt;)&apos;);    // Избавляемся от тегов в середине слов подсказки
    TRegExpr reSearch = TRegExpr.Create(gsSuggestRegExpr, PCRE_SINGLELINE);
    if (reSearch.Search(sText)) do {
      s = reSearch.Match;
      if (t.Search(s)) do s=ReplaceStr(s, t.Match, &apos;&apos;); while (t.SearchAgain());// (функция HmsHtmlToText не подходит т.к. ставит пробел в середине слова)
      if (HmsRegExMatch(&apos;^(.*?)[/\\(\\|]&apos;, s, sCh)) {                           // Обрезаем подсказку до знаков /, ( или |
        if (Pos(LowerCase(gsTextSearch), LowerCase(sCh))&gt;0) s = sCh;            // Если после этого в подсказке встречается набранный текст - то так и оставляем
      }
      if (LowerCase(s)==s) s = NameCase(s);                                     // Если подсказки - все маленькие буквы, делаем NameCase
      // Если в подсказке больше одного слова - дополнительно создаём сначала подсказки из слов, которые содержат набранный текст (выделяем слова отдельно)
      if (WordCount(s, &apos; &apos;)&gt;1) {
        nCnt = WordCount(s, &apos; &apos;);
        for (i=1; i&lt;=nCnt; i++) {
          sCh=ExtractWord(i, s, &apos; &apos;); if (Trim(sCh)==&apos;&apos;) continue;
          if (Pos(LowerCase(gsTextSearch), LowerCase(sCh))&lt;1) continue;
          if (LowerCase(gsTextSearch)==LowerCase(sCh)) continue;
          sCh = ReplaceStr(sCh, &apos;:&apos;, &apos;&apos;); sCh=ReplaceStr(sCh, &apos;\\&apos;, &apos;&apos;);
          CreateDynamicItem(FolderItem, gsSuggestMessage+sCh, &apos;-SetSearchText=&apos;+sCh);
        }
      }
      // Создаём папку с предложением варианта (подсказку)
      if (LowerCase(s)!=LowerCase(gsTextSearch)) CreateDynamicItem(FolderItem, gsSuggestMessage+s, &apos;-SetSearchText=&apos;+s);
      if (gnTotalItems&gt;100) break; // Ограничиваем количество создаваемых элементов = 100
    } while (reSearch.SearchAgain());
  }
  HmsIncSystemUpdateID(); // Говорим устройству об обновлении содержания
}</Value>
            </Property>
            <Property>
              <ID>501</ID>
              <Value>C++Script</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-35</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>05141b98bf13e7a9150b597889a12d9e</ItemID>
          <ItemPath>directors</ItemPath>
          <ParentID>43494d10925ef98fe19d65d12e4f1304</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Режиссёры</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,1027107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
          <ChildItems></ChildItems>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>3ba4c0731a1d602f688cd6c2a4c9acf5</ItemID>
          <ItemPath>actors</ItemPath>
          <ParentID>43494d10925ef98fe19d65d12e4f1304</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Актёры</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,1020163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
          <ChildItems></ChildItems>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>7b4635edda5a228ed2b7a568eee3293b</ItemID>
          <ItemPath>producers</ItemPath>
          <ParentID>43494d10925ef98fe19d65d12e4f1304</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Продюсеры</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,101321875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
          <ChildItems></ChildItems>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>801429cc1f59371ff203665ae7b5ab9e</ItemID>
      <ItemPath>lastvideos</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>02 Последние поступления</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43232,1006274306</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>41</ID>
          <Value>--update</Value>
        </Property>
        <Property>
          <ID>527</ID>
          <Value>--maxingroup=250</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425116</Value>
        </Property>
        <Property>
          <ID>525</ID>
          <Value>43513,8581850579</Value>
        </Property>
      </Properties>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>fb941ae36bc07cdb714592bcc2a82619</ItemID>
      <ItemPath>serials</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>03 Сериалы</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43232,0999329861</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>4</Value>
        </Property>
        <Property>
          <ID>570</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425116</Value>
        </Property>
      </Properties>
      <ChildItems></ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>82e7c2833c7f91874b545a5e8b9040af</ItemID>
      <ItemPath>serials=0&amp;limit=500&amp;category</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>04 Категории</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43232,0992385417</Value>
        </Property>
        <Property>
          <ID>527</ID>
          <Value>--group=year</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425116</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>54fd2fe94060b37cbdb6c50f575f48de</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=24</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Аниме</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0985440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d50193bf75a812ebfd6b16cb1aece5ae</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=13</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Биография</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0978496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>98a091a8a9bdd6af3328889aa938cd76</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=9</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Боевик</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0971552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d1f56df99aaff94de055414592c05a78</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=25</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Вестерн</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0964607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>401ceaab43b4f44c23b329981779df75</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=4</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Военный</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0957663194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>97e6a0a39f3991864415c4f41f1b4760</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=18</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Детектив</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,095071875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>846caa356f866ed87b2f83f40852acaa</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=20</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Детский</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0943774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9ebffaf9236fdde607fe888da4234847</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=30</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Для взрослых</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0936829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>db0d5c6d69d47ca62e2a4837f33a4ea7</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=3</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Документальный</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0929885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7881413d6081d827de90ccb215b01b03</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=6</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Драма</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0922940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6e226c47b1ceac76f5f5bf9adf64064f</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=21</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Игра</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0915996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>142140ab2a5e538ddf93a7f1213d1000</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=5</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>История</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0909052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>45f83140c3f60e3103b895ea907c0f68</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=7</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Комедия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0902107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>43313,9860860764</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d25c755291939dfcec5d48f51c67660c</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=29</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Концерт</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0895163195</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>34f3efa6dcbaba8f597024f96498cec9</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=15</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Короткометражка</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,088821875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>17f63438ba849bc19ad5de75aba74d0f</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=8</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Криминал</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0881274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>795561bfc6b8d7fea5a903ae5d26766c</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=11</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Мелодрама</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0874329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6d7e2cb4389d4f1b351844991eb188f1</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=28</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Музыка</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0867385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>282bb59eddf168384788729bbb3b4ea5</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=1</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Мультфильм</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0860440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>909bb55992dd6e9a68d06ad6b205fbf1</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=23</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Мюзикл</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0853496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3e038959dc949d04ef054c0aacb448a1</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=27</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Новости</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0846552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>df91e473892ac9dd9ca1d8cd09785a0b</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=32</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Отечественный</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0839607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>681df3090c27379bd59c9fecf6b15fcf</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=16</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Приключения</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0832663194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>bc197cce0860a2966c4c8f8f66913fb2</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=22</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Реальное ТВ</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,082571875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1ccf5eef864785fa47582cf1070fe363</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=2</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Семейный</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0818774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>814cd38f84b46ca5776b1585cc1d36ce</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=26</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Спорт</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0811829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8551876ad441e6a85e17dbeb34925a6b</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=19</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Ток-шоу</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0804885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9ad8121ab69d3e6970d41cd594c92705</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=10</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Триллер</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0797940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>58f299c3fb244c0f5c7a0426945fcfc0</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=14</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Ужасы</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0790996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>844958de6ea2330a1a8959e8dfe87e36</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=12</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фантастика</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0784052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>43343,8936849769</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b05fa5cb665a8afe5e55d025c3cabb04</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=31</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильм-нуар</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0777107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7909f450a1b9750c478a64ed35237990</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;category=17</ItemPath>
          <ParentID>82e7c2833c7f91874b545a5e8b9040af</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фэнтези</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0770163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>8566a39d795d4be6c2fd170d3a862457</ItemID>
      <ItemPath>serials=0&amp;limit=500&amp;year</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>05 По-годам</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43232,076321875</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425116</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c34d4ea13e273fa37d32ed0b98610821</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2018</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2018</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0756274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>43533,5951249769</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>866055ccaaa71e8f7726008cd36de5f7</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2017</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2017</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0749329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a3e96476077a7f16591ff8738a9e070a</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2016</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2016</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0742385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2e551aae6603ae3e6cbde6329482c360</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2015</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2015</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0735440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>23e4980276d3e721899811330cdb6ab3</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2014</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2014</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0728496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>50bc9a428bf15f8ef03740095f0eb46f</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2013</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2013</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0721552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6d6f1baa56d504e5dddfeb787811cf8a</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2012</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2012</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0714607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>43315,4599664583</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f442fbbda2c74bb514eb591d9abb362a</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2011</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2011</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0707663194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1d9704c2d354abb1dc95f8822ba03f87</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2010</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2010</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,070071875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d07db9ef6c724cac029bc79bac140ee5</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2009</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2009</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0693774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>0517616d69c4dc918fecc5af0d58cda9</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2008</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2008</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0686829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3dff60d371f3d14e5372903c38ab88ea</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2007</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2007</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0679885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b5fa12a34b37ead6a578da305c241a9c</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2006</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2006</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0672940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>472dc069ff42b8b540b0bd19982e79cd</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2005</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2005</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0665996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4be4b266b8267cced88cfff09d923f2a</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2004</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2004</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0659052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>66dbc7c947f22a5e82fe0b9b13df7402</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2003</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2003</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0652107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9cbf9123eb78a2c6cd7d5bc3e07cd3ce</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2002</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2002</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0645163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>668a16ca38a655c4e53b437b4eb636e6</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2001</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2001</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,063821875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>537c21d5d4f7d802cd61965dd3e84e44</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=2000</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2000</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0631274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2e5706726c7393d40c5124c686e8172b</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=1999</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>1999</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0624329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2fd325a4e61e5e93b3b9f8c52a345a13</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=1998</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>1998</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0617385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6d759c615ed6ca8754301fcec0ac4efd</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=1997</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>1997</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0610440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>beef67f271a8c8f1348433aa5d418762</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=1996</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>1996</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0603496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f3af2cbd698d944ab3f32ae694afbe21</ItemID>
          <ItemPath>serials=0&amp;limit=500&amp;year=1995</ItemPath>
          <ParentID>8566a39d795d4be6c2fd170d3a862457</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>1995</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0596552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>08fc574d32ce7a7a9d5eea1f2a38169e</ItemID>
      <ItemPath>serials=0&amp;country</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>06 По-странам</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43232,0589607639</Value>
        </Property>
        <Property>
          <ID>527</ID>
          <Value>--group=year</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425116</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>eb849208f05d39c534e1955879121e23</ItemID>
          <ItemPath>serials=0&amp;country=11</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Австралия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0582663195</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1dbfaaa5cb6b2f1aba8ba345221d29f8</ItemID>
          <ItemPath>serials=0&amp;country=25</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Австрия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,057571875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>93332f52c5270b167dd532b57da2ea31</ItemID>
          <ItemPath>serials=0&amp;country=89</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Азербайджан</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0568774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>63744b50153f261c7434a24796408e5d</ItemID>
          <ItemPath>serials=0&amp;country=120</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Албания</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0561829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9445b4db5d780932477b898bb62995fa</ItemID>
          <ItemPath>serials=0&amp;country=101</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Алжир</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0554885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d8490b8c17c64794cc56a4a2dcf09afe</ItemID>
          <ItemPath>serials=0&amp;country=98</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Андорра</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0547940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7406b9b78c3ce7679d01991436d728ca</ItemID>
          <ItemPath>serials=0&amp;country=118</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Антильские Острова</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0540996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7e2ea6fc2984ffd4bd43e38fe54c5a78</ItemID>
          <ItemPath>serials=0&amp;country=33</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Аргентина</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0534052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3ce645661136ab9f390b4b1fb90b65cd</ItemID>
          <ItemPath>serials=0&amp;country=67</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Армения</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0527107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>0c0709103daa560bae59b0f257d98345</ItemID>
          <ItemPath>serials=0&amp;country=81</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Аруба</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0520163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>93425a55c1d7b2a408fcc03dbbbcbbea</ItemID>
          <ItemPath>serials=0&amp;country=108</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Багамы</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,051321875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1d7d9685f98ccfe7a2cf80005ade7bab</ItemID>
          <ItemPath>serials=0&amp;country=24</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Беларусь</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0506274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d661925bdbf91f06b54d07fd6e887e62</ItemID>
          <ItemPath>serials=0&amp;country=23</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Бельгия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0499329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>cb71345da2d595a1add2fcacade04037</ItemID>
          <ItemPath>serials=0&amp;country=93</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Бермуды</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0492385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>52fe22bfa1f616260db81fe151cbe668</ItemID>
          <ItemPath>serials=0&amp;country=28</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Болгария</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0485440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7d6aa4c6e4d96dc7510856d2f70b2f03</ItemID>
          <ItemPath>serials=0&amp;country=92</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Босния и Герцеговина</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0478496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>e2b158b78cad4f944f3b71c429fb305a</ItemID>
          <ItemPath>serials=0&amp;country=17</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Бразилия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0471552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>e7ed451a0fd58061468f312a4f2f5fbb</ItemID>
          <ItemPath>serials=0&amp;country=83</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Вануату</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0464607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c05d79a4a9c2510b727693ead6ecd268</ItemID>
          <ItemPath>serials=0&amp;country=12</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Великобритания</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0457663194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>415405ca64dada44ad0ed41b9ccaed1f</ItemID>
          <ItemPath>serials=0&amp;country=8</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Венгрия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,045071875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f2a83a328322ccb2ab309b155e01564d</ItemID>
          <ItemPath>serials=0&amp;country=99</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Венесуэла</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0443774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ca9ae8f294c3f344151590c294dc75c9</ItemID>
          <ItemPath>serials=0&amp;country=117</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Вьетнам</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0436829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>0c3b8216e985b19a605a445117fd5ed2</ItemID>
          <ItemPath>serials=0&amp;country=100</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Гана</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0429885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9d76d109a5429b76ebdc7c61329394a0</ItemID>
          <ItemPath>serials=0&amp;country=79</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Гватемала</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0422940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>af3216b2879bacec7976a0b22fa0530b</ItemID>
          <ItemPath>serials=0&amp;country=7</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Германия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0415996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a0950cef33e2499f7e0c93fd6e2ec790</ItemID>
          <ItemPath>serials=0&amp;country=69</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Германия (ГДР)</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0409052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>7f62c522ca3824489af77df9a9e4c4ce</ItemID>
          <ItemPath>serials=0&amp;country=66</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Германия (ФРГ)</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0402107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>09d73386d2b1a7ed7c0708f5c45a6452</ItemID>
          <ItemPath>serials=0&amp;country=50</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Гонконг</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0395163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f15aa5bab4d4a32e6f5a44c5842d8396</ItemID>
          <ItemPath>serials=0&amp;country=40</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Греция</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,038821875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>85b9983329d012c5968177a000950c43</ItemID>
          <ItemPath>serials=0&amp;country=45</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Грузия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0381274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c31e61bddbdbb3f3605815c0a25cdddb</ItemID>
          <ItemPath>serials=0&amp;country=9</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Дания</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0374329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8183e07cc4021fc090172506fd94938e</ItemID>
          <ItemPath>serials=0&amp;country=62</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Доминикана</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0367385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c1c8c27cf65b607a6855b30fe81ab6b7</ItemID>
          <ItemPath>serials=0&amp;country=94</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Египет</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0360440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>66ec70f3315c9f107b4340dc51c9b7b7</ItemID>
          <ItemPath>serials=0&amp;country=112</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Замбия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0353496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>57e8e91d1ec4167d775c43732d5e423e</ItemID>
          <ItemPath>serials=0&amp;country=32</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Израиль</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0346552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f760be43fb494182db7e86a56faf6d33</ItemID>
          <ItemPath>serials=0&amp;country=49</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Индия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0339607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4d25f895534c4eab948a4c6b50b817c8</ItemID>
          <ItemPath>serials=0&amp;country=52</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Индонезия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0332663194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>e9fee954e361dfa0d806b28394d9c790</ItemID>
          <ItemPath>serials=0&amp;country=106</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Иордания</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,032571875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c21b94a5ac01b3c4ad2bb0ebe9f503cd</ItemID>
          <ItemPath>serials=0&amp;country=80</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Иран</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0318774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>16f0f800ce66888f64a6fb8e6a6277f3</ItemID>
          <ItemPath>serials=0&amp;country=1</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Ирландия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0311829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ea43904ee7e6ce4ff4e7c70571ad9ee0</ItemID>
          <ItemPath>serials=0&amp;country=48</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Исландия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0304885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>18913c7331715ddf4347285d421007d5</ItemID>
          <ItemPath>serials=0&amp;country=27</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Испания</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0297940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>14738490313cdadc0ad219665dc7647c</ItemID>
          <ItemPath>serials=0&amp;country=19</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Италия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0290996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1416d27316c40a4fd4ebac8026efe0d1</ItemID>
          <ItemPath>serials=0&amp;country=42</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Казахстан</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0284052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8efd11c1181942da89e481631a355219</ItemID>
          <ItemPath>serials=0&amp;country=87</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Камбоджа</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0277107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>083e03d2612b52f0ba75fc32b348d507</ItemID>
          <ItemPath>serials=0&amp;country=2</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Канада</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0270163195</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>975f57ac482dc334237d9dae2de7deda</ItemID>
          <ItemPath>serials=0&amp;country=95</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Катар</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,026321875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>484e9a8712d45137b1c0a33924414c06</ItemID>
          <ItemPath>serials=0&amp;country=75</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Кения</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0256274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>40dc86daee5f1947acc2292fb5973b72</ItemID>
          <ItemPath>serials=0&amp;country=119</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Кипр</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0249329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1bd02552537208c4de1829fccbc3ed8e</ItemID>
          <ItemPath>serials=0&amp;country=30</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Китай</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0242385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2f42b56453f14c12939908db8590d7f5</ItemID>
          <ItemPath>serials=0&amp;country=36</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Колумбия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0235440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1ede318fe651188e4f5364b53fd9a3ca</ItemID>
          <ItemPath>serials=0&amp;country=115</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Конго</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0228496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>10e6818e1923ecbe1edf272549b1d1cb</ItemID>
          <ItemPath>serials=0&amp;country=15</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Корея Южная</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0221552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3a857fdb66fd44a55dee15cabbf149bf</ItemID>
          <ItemPath>serials=0&amp;country=86</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Косово</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0214607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>999c46472c4cb751ccb6395cedd688f1</ItemID>
          <ItemPath>serials=0&amp;country=35</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Куба</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0207663194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9ca5470278ded646c222d601d63f3432</ItemID>
          <ItemPath>serials=0&amp;country=72</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Кыргызстан</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,020071875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>e95051768e0e4441dee352c2ddeabf48</ItemID>
          <ItemPath>serials=0&amp;country=107</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Лаос</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0193774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>959b8374afb1072fe612cb5cdd8cdb9a</ItemID>
          <ItemPath>serials=0&amp;country=39</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Латвия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0186829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>dff265611bcb2621266ffdd2c6ed1ad1</ItemID>
          <ItemPath>serials=0&amp;country=73</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Ливан</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0179885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>092d282c1d2b4c060a2f2ead7614990c</ItemID>
          <ItemPath>serials=0&amp;country=63</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Литва</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0172940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>5888df3a974837b12abc867231b2cce7</ItemID>
          <ItemPath>serials=0&amp;country=3</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Люксембург</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0165996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ec57325f12c7c9b32b8cd875d0116c69</ItemID>
          <ItemPath>serials=0&amp;country=114</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Мавритания</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0159052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>bdda7dc64401aa92903b23d32b6e2776</ItemID>
          <ItemPath>serials=0&amp;country=59</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Македония</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0152107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6ba19ce1ecf2b4330458f2f13a90e7a8</ItemID>
          <ItemPath>serials=0&amp;country=58</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Малайзия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0145163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>dde0c926719bbd27132891dc98163ca6</ItemID>
          <ItemPath>serials=0&amp;country=54</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Мальта</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,013821875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4a14bf5ca891b15a211030ae1cb5a9b6</ItemID>
          <ItemPath>serials=0&amp;country=110</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Марокко</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0131274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c3af539c9847cd7059160bd8dd9b55df</ItemID>
          <ItemPath>serials=0&amp;country=5</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Мексика</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0124329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>48d80bc1224ac918cba8d56e77e0953e</ItemID>
          <ItemPath>serials=0&amp;country=97</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Монголия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0117385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3234c9b51cb67919bbd734779a0ff149</ItemID>
          <ItemPath>serials=0&amp;country=64</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Намибия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0110440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>f0bb01914028dac15c652310a627a0ac</ItemID>
          <ItemPath>serials=0&amp;country=77</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Нигерия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0103496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>234502c283686f79f008946aafd2e2d7</ItemID>
          <ItemPath>serials=0&amp;country=38</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Нидерланды</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0096552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>aded4929e31860dc5e2d9f4909ed7ac0</ItemID>
          <ItemPath>serials=0&amp;country=31</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Новая Зеландия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0089607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>bb648459b0ed98ce8febb4cca36e1730</ItemID>
          <ItemPath>serials=0&amp;country=29</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Норвегия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0082663194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>39c16403aa9df60ba430eb28e7219c09</ItemID>
          <ItemPath>serials=0&amp;country=68</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>ОАЭ</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,007571875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1998cfdbf50e407ab6d9b2aca42d0976</ItemID>
          <ItemPath>serials=0&amp;country=71</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Панама</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0068774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2532896fdd91f1e4c172de30941154b0</ItemID>
          <ItemPath>serials=0&amp;country=113</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Папуа - Новая Гвинея</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0061829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>972a423e666cde668632c5f05430956c</ItemID>
          <ItemPath>serials=0&amp;country=60</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Перу</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0054885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425116</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ad5d10818990aa47e91d229e88c67bca</ItemID>
          <ItemPath>serials=0&amp;country=20</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Польша</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0047940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>39b68a3f70426adaeffc50aafa75add6</ItemID>
          <ItemPath>serials=0&amp;country=43</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Португалия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0040996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>75ec95f1d23b36690d751fd03da81371</ItemID>
          <ItemPath>serials=0&amp;country=96</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Пуэрто Рико</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0034052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1e0103dbc86974e7b2c45a3cacc67f73</ItemID>
          <ItemPath>serials=0&amp;country=10</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Россия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0027107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d0dc07b7705894b1e53dc6031c59e5a7</ItemID>
          <ItemPath>serials=0&amp;country=102</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Руанда</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0020163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>afbb9e94847d495602be3cf8d4eaa170</ItemID>
          <ItemPath>serials=0&amp;country=61</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Румыния</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,001321875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6d592e471c3b7f9e43c2a5683aac649d</ItemID>
          <ItemPath>serials=0&amp;country=78</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Саудовская Аравия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43232,0006274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>52da3b28eac51f3fa2d4c990626ba108</ItemID>
          <ItemPath>serials=0&amp;country=51</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Сербия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9999329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>52b4e8b4580ba8f352cdfd71bb8d21f2</ItemID>
          <ItemPath>serials=0&amp;country=103</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Сербия и Черногория</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9992385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>94d046e6b9db50d1d079d43772a83603</ItemID>
          <ItemPath>serials=0&amp;country=55</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Сингапур</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9985440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>eaea8b613da9010ae71a8932b4f9f044</ItemID>
          <ItemPath>serials=0&amp;country=57</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Словакия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9978496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>6d06dc45d6fcb52ec31cbc38d6900cd5</ItemID>
          <ItemPath>serials=0&amp;country=91</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Словения</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9971552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d294dbf690d230f862c7128060b12d15</ItemID>
          <ItemPath>serials=0&amp;country=74</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Сомали</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9964607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>2a392a8ac66c80e5d64cb6730fd2cb2b</ItemID>
          <ItemPath>serials=0&amp;country=14</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>СССР</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9957663195</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>95665dcc947da275c548de99719ffb4b</ItemID>
          <ItemPath>serials=0&amp;country=76</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Судан</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,995071875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>c0f43f1f2641493c9fac72ef1dc164d0</ItemID>
          <ItemPath>serials=0&amp;country=4</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>США</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9943774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>bda81f21b76204b3bbf158872651371e</ItemID>
          <ItemPath>serials=0&amp;country=46</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Таиланд</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9936829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a673fb690beb5873487958fdc61b3bf3</ItemID>
          <ItemPath>serials=0&amp;country=41</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Тайвань</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9929885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>32b9057eb218e3e9d1a5acb03ed3f44d</ItemID>
          <ItemPath>serials=0&amp;country=84</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Тунис</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9922940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>10c12fafa62bed109daf0ec1ed5b434f</ItemID>
          <ItemPath>serials=0&amp;country=13</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Турция</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9915996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>94309947b37ea0ac1304e11e46ea9300</ItemID>
          <ItemPath>serials=0&amp;country=105</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Узбекистан</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9909052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>ae5a225fe751c72fc23855e058ccadcf</ItemID>
          <ItemPath>serials=0&amp;country=18</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Украина</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9902107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>62756ccac49358b8fd23b92185402d6f</ItemID>
          <ItemPath>serials=0&amp;country=90</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Уругвай</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9895163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>675b5f4d97a8e6a5483d5f2ceaa3040d</ItemID>
          <ItemPath>serials=0&amp;country=111</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фиджи</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,988821875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>bffeaddca49322c0ff839caf5183d6af</ItemID>
          <ItemPath>serials=0&amp;country=53</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Филиппины</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9881274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9bd7b129c43b2dc60559ee511a3bbe96</ItemID>
          <ItemPath>serials=0&amp;country=34</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Финляндия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9874329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>5a0af2b0ae5ee709c5d3c1c236c87c9f</ItemID>
          <ItemPath>serials=0&amp;country=6</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Франция</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9867385417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>53651d53b71c57bcdf014fde12d42d97</ItemID>
          <ItemPath>serials=0&amp;country=104</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Французская Полинезия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9860440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3206af17cbcb025ef76c1d08604c2bbc</ItemID>
          <ItemPath>serials=0&amp;country=65</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Хорватия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9853496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1a4145688ba0d8d859db78953bfd5f78</ItemID>
          <ItemPath>serials=0&amp;country=109</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Черногория</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9846552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>75ba02eba3143a2dc69a7f6b7bab6a5f</ItemID>
          <ItemPath>serials=0&amp;country=56</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Чехия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9839607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>15cd1be82e9c833fb2c7edd7742a8392</ItemID>
          <ItemPath>serials=0&amp;country=21</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Чехословакия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9832663194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>719755aa3fde4092ab4ab67a8cafad4e</ItemID>
          <ItemPath>serials=0&amp;country=47</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Чили</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,982571875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>34ec5532b2cee6890c079291b16a7513</ItemID>
          <ItemPath>serials=0&amp;country=37</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Швейцария</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9818774306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>367d631911ad811ccca75e279fb659c8</ItemID>
          <ItemPath>serials=0&amp;country=26</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Швеция</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9811829861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8f1f4d7f1bebabc3add6be751b6ab9c8</ItemID>
          <ItemPath>serials=0&amp;country=70</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Шри-Ланка</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9804885417</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d09cdb34302c9ec3b2f918dee209bfe9</ItemID>
          <ItemPath>serials=0&amp;country=85</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Эстония</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9797940972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b3f30da69125f03cbe0c9145d7eacaed</ItemID>
          <ItemPath>serials=0&amp;country=116</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Эфиопия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9790996528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1f814220daa9e4abd66b00a4f456791b</ItemID>
          <ItemPath>serials=0&amp;country=44</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>ЮАР</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9784052083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>edff8c73635c49bcca3c725ea40ab337</ItemID>
          <ItemPath>serials=0&amp;country=16</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Югославия</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9777107639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>93b8153d5adf200eb743395ceb332e00</ItemID>
          <ItemPath>serials=0&amp;country=82</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Югославия (ФР)</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9770163194</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>30efe3e57d29e277751d9dcf38801281</ItemID>
          <ItemPath>serials=0&amp;country=121</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Южная Корея</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,976321875</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>28855b514787f82de1be5e457b08234e</ItemID>
          <ItemPath>serials=0&amp;country=88</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Ямайка</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9756274306</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>5a8eb7044ebe59134bc5db85772a9daa</ItemID>
          <ItemPath>serials=0&amp;country=22</ItemPath>
          <ParentID>08fc574d32ce7a7a9d5eea1f2a38169e</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Япония</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9749329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpFileName</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>58d4b1df871834f9f12b3b0215885cdb</ItemID>
      <ItemPath>imdb&gt;6</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>07 С рейтингом IMDb от 6.0</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43231,9742385417</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425231</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d8c71551037ae6317d467465fdd6e95f</ItemID>
          <ItemPath>serials=0&amp;min_imdb=6</ItemPath>
          <ParentID>58d4b1df871834f9f12b3b0215885cdb</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>1 Последние поступления IMDb&gt;6</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9735440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>43356,9581079282</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ItemID>
          <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category</ItemPath>
          <ParentID>58d4b1df871834f9f12b3b0215885cdb</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2 Категории</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9728496528</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
          <ChildItems>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8d2fb07b8849305b7b9359bb085c7ce1</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=24</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Аниме</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9721552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6bb5408495e32b913089db00428ea675</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=13</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Биография</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9714607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0ac74c6f0a16a9d45bdcb85559fd37b7</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=9</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Боевик</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9707663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c46dbd159a633d6bea6a0bdf9334e46f</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=25</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Вестерн</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,970071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>175f55ccc5e53812423c6cba25aa0ad8</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=4</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Военный</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9693774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>018cceaee037f262d8708fdc38503802</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=18</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Детектив</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9686829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>43345,8467813426</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3c2e4a19cc795bf2161ccacd9345102f</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=20</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Детский</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9679885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fa995988be57b0ad0f77543f95b34980</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=30</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Для взрослых</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9672940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>88a04d99ed1051f29589447aab964880</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=3</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Документальный</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9665996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d4693c0fecd5fbad6488537f21a3aabe</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=6</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Драма</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9659052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7ee655becdcd9e5448c6df81c5a4e807</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=21</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Игра</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9652107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c261e5e3ff3f568027115f965b4b2f92</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=5</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>История</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9645163195</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0cdf3c231611a89b1beea28a6017d8d0</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=7</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Комедия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,963821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bfbb379ac44a62d28d267181e6dbee21</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=29</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Концерт</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9631274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>634be9d7629c7bc24e75a560d2320075</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=15</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Короткометражка</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9624329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c629a167f5ac65801149cba282ebff05</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=8</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Криминал</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9617385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>9815886997699668f2c1c34bacf8067a</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=11</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мелодрама</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9610440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6e3e5c71b9be7a41b1af6b9e500a3433</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=28</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Музыка</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9603496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>efce4c2118cfece32859688df77294ac</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=1</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мультфильм</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9596552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>652d4f3e67c1af41f937ef81e5f58f0a</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=23</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мюзикл</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9589607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2a97b5c320f17809ef6512066972168b</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=27</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Новости</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9582663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fd5910df518f2c91bb12eaa6d680f262</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=32</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Отечественный</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,957571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7f481b6eb0efb027060568148ab6520d</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=16</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Приключения</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9568774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>56f30f5d6ac513600e70e2baf432b3be</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=22</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Реальное ТВ</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9561829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>14e21e7e82c8602f5d00cd17e6046456</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=2</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Семейный</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9554885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>07eacb79c405a6bcc3a38807ab46e17e</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=26</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Спорт</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9547940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4d53a3bea2753335eba0bc04e748340d</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=19</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ток-шоу</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9540996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7658f15212e44f90809a1a1aaa425923</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=10</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Триллер</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9534052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e1b67daaf26e5c26ad3625a9ab0d9c80</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=14</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ужасы</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9527107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5018c0dee0d2fcae7cbc0fc08b211827</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=12</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фантастика</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9520163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>43304,8987100116</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3f658169ec88591d72b7d7c316dad561</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=31</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фильм-нуар</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,951321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e2d1d5a208214d050ed5c088d7c02c96</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;category=17</ItemPath>
              <ParentID>9ab8ae0682aa4d11e4e2f8e5f6386b6c</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фэнтези</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9506274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
          </ChildItems>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>9bf0b4437b8817581e3854c0408bf309</ItemID>
          <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year</ItemPath>
          <ParentID>58d4b1df871834f9f12b3b0215885cdb</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>3 По-годам</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,9499329861</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
          <ChildItems>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6061311e30bd9935023612f08830f544</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2018</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2018</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9492385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>43278,0949919792</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>54bd729ec221575ba98751d67696f85f</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2017</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2017</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9485440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c97f2e67ab7fb502196ac52842fe3c2e</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2016</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2016</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9478496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6888aea1338c8fa645b82728e900ecf7</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2015</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2015</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9471552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4126cf920454cfdce055e2c3632fd3c3</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2014</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2014</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9464607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0ef6a59b5ea2eff39d8344cc9f132a15</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2013</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2013</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9457663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e7c47ee10a10db2dd52289f356c1a758</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2012</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2012</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,945071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>dbca36121dc08af0937114138a75caa1</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2011</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2011</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9443774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6c619f00767be64c564cb574fd558e4d</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2010</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2010</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9436829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d0099e786edc301d077ea538485f6241</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2009</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2009</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9429885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0b8b178f138254ba36af4371d2fe7260</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2008</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2008</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9422940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2b21f4ab3a2517842c79a2f283d2cc3d</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2007</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2007</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9415996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>90563b0fe0c786acca1e916be8a60f2b</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2006</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2006</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9409052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c24c25b7c1d54fa29c1ba11c75286f1c</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2005</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2005</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9402107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fe13c5bd5105db2973db98a58e205126</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2004</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2004</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9395163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4f25f9718dda317fc1687b66ccf78b0c</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2003</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2003</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,938821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>cf62d1bbee14c9b7f97871f089646d34</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2002</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2002</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9381274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>06592522523865875db850abc37b1884</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2001</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2001</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9374329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5b9bcf3840c2c29920e8ce48fafe795f</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=2000</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2000</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9367385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>441806ea5f2cc3625cdf347793d63155</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=1999</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1999</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9360440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fddb2e4b0e7ba1f0d5366898988f4f18</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=1998</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1998</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9353496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ffd7ee43f854851f6e52451828d2d0eb</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=1997</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1997</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9346552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>72abf21f5ef0d9d504c16a7283d0e2e0</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=1996</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1996</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9339607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d4b5ed051ac850b30d49901ff22f93b0</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;limit=500&amp;year=1995</ItemPath>
              <ParentID>9bf0b4437b8817581e3854c0408bf309</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1995</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9332663195</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
          </ChildItems>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>bc36f43b050f85842ba93da5469f4370</ItemID>
          <ItemPath>serials=0&amp;min_imdb=6&amp;country</ItemPath>
          <ParentID>58d4b1df871834f9f12b3b0215885cdb</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>4 По-странам</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,932571875</Value>
            </Property>
            <Property>
              <ID>527</ID>
              <Value>--group=year</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425231</Value>
            </Property>
          </Properties>
          <ChildItems>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>51fb5761b564862a334d0f048faa3227</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=11</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Австралия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9318774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4bb94280bda33248a596aa9ebf081f21</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=25</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Австрия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9311829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>09917ba84ba7764faae1b06d76f0b4ef</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=89</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Азербайджан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9304885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ef6d5b3735cdc513535a1efdeea1f9f1</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=120</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Албания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9297940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ba964bd70555ef10fbf93510641be169</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=101</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Алжир</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9290996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2394de1524e6c0eaf2e679aac6ebda03</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=98</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Андорра</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9284052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b1acf5e3926bb5570bb4543c09843c6b</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=118</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Антильские Острова</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9277107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e7ac3a3f2f72abab67f2227a98013327</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=33</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Аргентина</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9270163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>cde54818b94dfe0076891e45c6577300</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=67</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Армения</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,926321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4e9bd4ae8a71e26753fa9e59d35a3086</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=81</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Аруба</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9256274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>66022e56089007abd1be5a45dcd0e218</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=108</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Багамы</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9249329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a4cfde7a725797e307043aa597dd8b9c</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=24</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Беларусь</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9242385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6c5d17210db251dc53c2e7c1f8f4feab</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=23</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Бельгия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9235440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7dd86aa8af75f4f5bcebb7fc7d8c9021</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=93</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Бермуды</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9228496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>12f4bb85a66e891661ebbeff8adbc276</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=28</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Болгария</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9221552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>445a73b8f4bc382966968f4aba6b2c9c</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=92</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Босния и Герцеговина</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9214607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bc79a8e92c77739f17ba8bd52c40a3be</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=17</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Бразилия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9207663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e7c81db89467cffcce2a1743f94c98ad</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=83</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Вануату</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,920071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5d0a9bec02cd7fbaaa59f63527df6ee4</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=12</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Великобритания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9193774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2e8da93ee09ff5eb532b18232ca9538b</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=8</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Венгрия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9186829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>57cac8370f03a6ab9e8c4de25ec5c1fd</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=99</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Венесуэла</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9179885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c977bf898974fc4d4084cfbf79c99456</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=117</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Вьетнам</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9172940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>763a2d09a51ae0b8ddddbacb6afa186e</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=100</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Гана</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9165996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>017969e9609fb1e8b72f98c6ef36d04f</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=79</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Гватемала</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9159052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>48602e7411d54e71a3a09190413d400b</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=7</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Германия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9152107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c421624b4aa585575859d5f98dbef652</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=69</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Германия (ГДР)</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9145163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d4806184e9e671308140069c585167a4</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=66</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Германия (ФРГ)</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,913821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2f75bb71f865b926f8c406ffadcbebb5</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=50</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Гонконг</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9131274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e2d2f36ff3a96a3fdbb45280dc7b246a</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=40</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Греция</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9124329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>04a24d3c23adfb173fcd70b43e6d4f95</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=45</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Грузия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9117385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c242922edc66730b4aa3de2998e220a4</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=9</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Дания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9110440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>237b1ab30846ec2b086bec1e172e0ac6</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=62</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Доминикана</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9103496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>35665674806a60d6f6e675e3a5b0d3a1</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=94</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Египет</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9096552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8d15b35165de1292bbb4901369da69fa</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=112</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Замбия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9089607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ffceb400dca19aebb990bcf9e43c4835</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=32</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Израиль</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9082663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0a6d08b121b69e9bbf431e5db4fe9a15</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=49</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Индия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,907571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>f20321c47ddbf389e2712b7a56a03b22</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=52</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Индонезия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9068774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>260bdacff547e04aabaecc4afe0c8f44</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=106</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Иордания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9061829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>719f1790e3b16fdb15703076cae0e816</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=80</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Иран</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9054885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d571252cf9a08d37068d03d1595f9e66</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=1</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ирландия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9047940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d96ff414ce90cdeefe944e33403051ae</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=48</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Исландия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9040996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8da3bd18d2d5bc3933ad6cdcaedbd5fe</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=27</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Испания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9034052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a40a51fa0059b1b626621703639e5db8</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=19</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Италия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9027107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bc8984971107ac5d3dee68c12aee6fbc</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=42</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Казахстан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9020163195</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3e1de129384419bf4b2c67c62d58a2c2</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=87</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Камбоджа</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,901321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c1d324dce68d313be2d794af561328cf</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=2</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Канада</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,9006274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a77808e617f94d8e059ba365d8f68e09</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=95</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Катар</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8999329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ea0ff7747fc7881bec3364953916ef40</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=75</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Кения</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8992385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>00c7c919d94d5903dd48674ebe773749</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=119</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Кипр</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8985440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>15a1f10c03ec65aeb659cade3179d725</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=30</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Китай</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8978496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425231</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5bc6b6d3aad40e653d20a8b754e00f58</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=36</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Колумбия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8971552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>746a131fd9543962cdecd5b3cb9dec19</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=115</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Конго</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8964607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e448ab32db5e2f699a031caeb2e71713</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=15</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Корея Южная</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8957663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>265c0c5c5b46feab0ee8784169fbab24</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=86</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Косово</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,895071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6ddc77286e891474e9a1eaac498cf7e1</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=35</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Куба</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8943774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>cddc7f54c5b4dacf9ecdcb5d3ac70215</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=72</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Кыргызстан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8936829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fb64700959553892da852b21cb009ed8</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=107</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Лаос</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8929885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d21b67073744a550214886e6e17b4904</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=39</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Латвия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8922940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d529752de011b82d621852a5c97209e0</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=73</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ливан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8915996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>033f9b58cd60622259b0c46cadf8c42a</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=63</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Литва</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8909052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0832516c86c7cf1ae614fbe8fe60bfb1</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=3</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Люксембург</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8902107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>63cc240b88d20f9a7c30c532aeed9f24</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=114</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мавритания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8895163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>49cc35a8bc4c9e2ef612ff23b2ba7f04</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=59</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Македония</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,888821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e9328f6c54230cdbe22dd20592cddac2</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=58</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Малайзия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8881274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8fc479394f301a20e88df1fc0c5e9f6c</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=54</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мальта</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8874329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6049a3132c003f7ae8cc8fdcbd018d20</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=110</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Марокко</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8867385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>59498044cd10f95e80a92504402c041d</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=5</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мексика</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8860440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>41b0017e74ddb1cab9ed66817ed8ef72</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=97</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Монголия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8853496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5604a8c8c33ac83eeed22f2e7ab0181a</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=64</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Намибия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8846552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4c12031bea8a6ff9e4e5919aa5fec780</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=77</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Нигерия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8839607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>f8555ed49bde344e4018a6530fb2d299</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=38</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Нидерланды</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8832663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>be627fb57134a5ed8b536e5ec30b3b1d</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=31</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Новая Зеландия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,882571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7ca5ff21b8221e40c0d57ddecf083946</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=29</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Норвегия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8818774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0a0975c959ad568713a36b1f880bf18f</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=68</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>ОАЭ</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8811829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a3a2a800e6ba27f8621dd6bcd6907d28</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=71</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Панама</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8804885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fa12b4e61906e20f424c7fa37b0c6f58</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=113</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Папуа - Новая Гвинея</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8797940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5f91bde35b423ecc33eb2762111dcfa3</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=60</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Перу</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8790996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>890d595a6ebeb63d4fad5068c2b01e61</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=20</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Польша</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8784052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>18ecbd6819205ab9138cbaeb476935e2</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=43</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Португалия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8777107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>242c19bb43c859d76dc942f8679b45a2</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=96</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Пуэрто Рико</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8770163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>78888587aa9617e6c46d76535b8d9b52</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=10</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Россия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,876321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d46d43ccfce3db4dcf5fe3762b9e192c</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=102</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Руанда</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8756274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8c12bb435e62fbf9ffe0dc0b67a7c2e7</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=61</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Румыния</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8749329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>732951582fd9576926f951918333783b</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=78</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Саудовская Аравия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8742385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>eb8b1e7e9d872d2581e66e6a3bcb411e</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=51</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Сербия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8735440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>aa80227c01d06ed41f615218503fad9c</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=103</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Сербия и Черногория</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8728496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>299ce4dad6a85f1e95ac8ddf4e002916</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=55</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Сингапур</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8721552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>9b09f6e5e7e688f9f85abea0a9f2aa1a</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=57</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Словакия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8714607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>365bb650c54c2c3114ae97f6a835b7b8</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=91</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Словения</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8707663195</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4b4e12c79d2744f3dff13a70220f39e1</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=74</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Сомали</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,870071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>96ef8ec6809a61dbd893eadecc8c2f97</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=14</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>СССР</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8693774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5680a3c1f45864bc7aebd2ec2362adeb</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=76</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Судан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8686829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>20e6f2b0ff96575ddd02169b63c605b6</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=4</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>США</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8679885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5b730e94be82aaecd08f30859560d451</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=46</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Таиланд</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8672940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5da6c28fc77ba484ba4f7ce18b3c52a0</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=41</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Тайвань</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8665996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>489d43976a5c0da49c096005c50cb8d7</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=84</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Тунис</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8659052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>033191d730b4e1898c9645c3515d7bb2</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=13</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Турция</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8652107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>f348116deb14f00f7c7e7e74663fd148</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=105</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Узбекистан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8645163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0f4fad2bea943c20a6acd6ad87174499</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=18</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Украина</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,863821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>439de3e6d301abc3d2ab1db8cdbc28f5</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=90</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Уругвай</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8631274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1036cd6026b8cd817a7d46e63288f72f</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=111</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фиджи</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8624329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3540d161df0d7a70d68f1b816d73d960</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=53</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Филиппины</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8617385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>14f98e59fbb09f2989108ac2296a4f7b</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=34</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Финляндия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8610440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d65bca1c445e68f16a5e378be00515bc</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=6</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Франция</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8603496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>cecb3c0671b70c5c7425fff93b80edfa</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=104</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Французская Полинезия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8596552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>537a0d82577dc9295198cbda227a143d</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=65</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Хорватия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8589607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d40f6083928e0b3fe5027361dee29819</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=109</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Черногория</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8582663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b9eaf445b7a52abbb0678ba7f6719a3f</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=56</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Чехия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,857571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2c4ca720eaf930228294e54fb5d7653b</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=21</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Чехословакия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8568774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ec0ca549cebbb38f62cb61f0776507ff</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=47</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Чили</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8561829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d23d1ac0fc0ff13c39f6bd19469c1558</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=37</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Швейцария</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8554885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d753f1e95337dad9b02206f9c1b39cff</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=26</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Швеция</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8547940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>25d0ae42c315637e8ae7cbb400461d13</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=70</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Шри-Ланка</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8540996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>70545f4840bdca54f1b094360a61f127</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=85</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Эстония</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8534052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>9f09a26c919133280a35e65f358216fd</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=116</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Эфиопия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8527107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>44d58bf8cf8e092f739293af0f5caf05</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=44</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>ЮАР</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8520163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0a67de4811cc1772e7ca4a81f00bbecc</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=16</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Югославия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,851321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>9b6e7bfd65b53f0e26493a47a38d74cc</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=82</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Югославия (ФР)</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8506274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>72d9e4a15253bb8b3971d3837e466f18</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=121</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Южная Корея</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8499329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>07d440901c05b1c47512ba8ec19b4851</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=88</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ямайка</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8492385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>de0f66ed3eada54d96a381ac2c927f85</ItemID>
              <ItemPath>serials=0&amp;min_imdb=6&amp;country=22</ItemPath>
              <ParentID>bc36f43b050f85842ba93da5469f4370</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Япония</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8485440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
          </ChildItems>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>e7fb4dd44722ab75264527ef89992462</ItemID>
      <ItemPath>kp&gt;6</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>08 С рейтингом KP от 6.0</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43231,8478496528</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425347</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>219f19f7fae39c51508ccf775aff5141</ItemID>
          <ItemPath>serials=0&amp;min_kp=6</ItemPath>
          <ParentID>e7fb4dd44722ab75264527ef89992462</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>1 Последние поступления KP&gt;6</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,8471552083</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425347</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>7dbbca4dfe8a472429c1d22e07695f8d</ItemID>
          <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category</ItemPath>
          <ParentID>e7fb4dd44722ab75264527ef89992462</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>2 Категории</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,8464607639</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425347</Value>
            </Property>
          </Properties>
          <ChildItems>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>085d23a618cc33fd18ec9904138ca65d</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=24</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Аниме</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8457663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c7e11d6957e9cd385353ad52bfe7ec73</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=13</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Биография</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,845071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>665aeaa631caadac0d6b69ba8e6a6bd6</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=9</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Боевик</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8443774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1221786d73885e42d3f73f104d70104b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=25</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Вестерн</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8436829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d583cb40f73920a2f307f1bfc507ebea</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=4</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Военный</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8429885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>922aa8feac9ff843634838f781b9aac6</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=18</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Детектив</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8422940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>87e2a59306a9b5a328ea2c180dac0a99</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=20</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Детский</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8415996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ff031c09114c093b9bd4fa373289f0a7</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=30</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Для взрослых</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8409052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>baee2f924593639f895e16c0262aa0da</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=3</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Документальный</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8402107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>52489b3a8dc7580b498dc56360de7fa4</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=6</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Драма</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8395163195</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2be82f2a6817b98482b5dddb41cd50a6</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=21</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Игра</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,838821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a22f9fc08b10595f68cc5392c08350b2</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=5</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>История</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8381274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2b65595e929d53875bd8522d534deafc</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=7</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Комедия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8374329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>97e9a9add4f656edffcce63c8c24564f</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=29</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Концерт</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8367385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a2848a48cf9fadbe4e3d87cf60593e23</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=15</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Короткометражка</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8360440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1aa7dd2395de97f49ec2a1d9eb602d7f</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=8</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Криминал</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8353496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8d146c2824bb32078771f5e60adb329b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=11</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мелодрама</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8346552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1386bd2db10f5e3900b958e6e997fcab</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=28</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Музыка</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8339607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2e0f61a58202ea0a3adad363b85f3a25</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=1</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мультфильм</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8332663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>58b145feafbf5e90bfade70362dd9347</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=23</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мюзикл</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,832571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>56ae51da6c60135ec273b0ae3be5196c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=27</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Новости</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8318774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3f421043ac11def760089cd20ab058d8</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=32</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Отечественный</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8311829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>665d30be595faf1dda6c521b6d9a7583</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=16</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Приключения</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8304885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>02ac7bb01f9a155ca37f57696c4158bf</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=22</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Реальное ТВ</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8297940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>df4d8520e79a63ff9640d5a7e03ec3eb</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=2</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Семейный</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8290996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b7e6dd772152d1970a10b7e351f07ec1</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=26</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Спорт</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8284052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>74e045268336dea61e33d01213b53658</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=19</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ток-шоу</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8277107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>32dad8cdb07ad69bd812ef8322ec0d4b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=10</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Триллер</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8270163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4b14209efd63efc9ab86eb3a9f43f9a0</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=14</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ужасы</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,826321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1f4f5cb0c04d4893a450cde0ea218bcd</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=12</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фантастика</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8256274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>793d35b8c8391e448eddba6e2e0ca519</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=31</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фильм-нуар</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8249329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c0137aa451f7f98db8cf09f8167cf0fa</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;category=17</ItemPath>
              <ParentID>7dbbca4dfe8a472429c1d22e07695f8d</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фэнтези</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8242385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
          </ChildItems>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>a9bc5196366ad82fa9560ae4c3e46e04</ItemID>
          <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year</ItemPath>
          <ParentID>e7fb4dd44722ab75264527ef89992462</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>3 По-годам</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,8235440972</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425347</Value>
            </Property>
          </Properties>
          <ChildItems>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3239d6f5e468d3a19dd48721304b2dad</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2018</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2018</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8228496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>85edeb18d93cd5c0679c377b3b5cff62</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2017</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2017</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8221552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>056133c4e1237783d8c89a5bdb5df1b1</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2016</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2016</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8214607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ffb0a4bb29c1b996a551e7e74534e327</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2015</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2015</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8207663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>61f803277e3fde0a0469ac4bc056dcf7</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2014</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2014</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,820071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c72e908a763f7a8d8b80801c1ba514ce</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2013</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2013</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8193774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7e5bbbf9f68fe5427a4e3f1ca9fa9a45</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2012</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2012</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8186829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c0338d3f1b1f622f5da4c350fae8843d</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2011</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2011</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8179885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4848aaef55024b71d5b3e6bf6c03a387</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2010</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2010</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8172940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5d2b20c967f4656618cf5a335c1bbca9</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2009</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2009</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8165996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>f15c8a964efbb4d07da4063bc23ef0f3</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2008</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2008</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8159052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b34a7c6f74c0196b93d5c3683b33392f</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2007</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2007</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8152107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>139ebe5a5871ac4200a489cc777deccd</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2006</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2006</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8145163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c595f5f4b06ec85ae416890f40606702</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2005</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2005</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,813821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8faf22d868e2e6171335e5f498785d8e</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2004</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2004</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8131274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>72de35f2159d9654bb858c1fb1248ee0</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2003</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2003</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8124329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>77b998fbe3f58eca1ac134b3c8ca9cbf</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2002</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2002</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8117385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>131a5e5e7c2f3e6a6771a5f24cd010de</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2001</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2001</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8110440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>40f00f8f774ff6e5cdbb00566c848658</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=2000</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>2000</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8103496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0e4d6d637b0b29d87cd1344195bf09ea</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=1999</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1999</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8096552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2b127ca75699933184e0876d8fa576f9</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=1998</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1998</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8089607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fe0a6adbd015e16e30593330859f4388</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=1997</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1997</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8082663195</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>19259e76f1592b20bfe4273d42abda5c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=1996</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1996</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,807571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>83198a9a294963e04a1725ef71697e3e</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;limit=500&amp;year=1995</ItemPath>
              <ParentID>a9bc5196366ad82fa9560ae4c3e46e04</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>1995</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8068774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpCreateDate</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
          </ChildItems>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>d3060ac19d66b6058023c9c56b1faad4</ItemID>
          <ItemPath>serials=0&amp;min_kp=6&amp;country</ItemPath>
          <ParentID>e7fb4dd44722ab75264527ef89992462</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>4 По-странам</Value>
            </Property>
            <Property>
              <ID>35</ID>
              <Value>43231,8061829861</Value>
            </Property>
            <Property>
              <ID>527</ID>
              <Value>--group=year</Value>
            </Property>
            <Property>
              <ID>215</ID>
              <Value>-mpCreateDate</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>43232,1041425347</Value>
            </Property>
          </Properties>
          <ChildItems>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d7ab18cacfabff456749de38f688e7ed</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=11</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Австралия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8054885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c6727ba667a2f8852dc88b090efdc637</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=25</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Австрия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8047940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>48dc38cb9dc33a1d62b1bb3984c6a9a5</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=89</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Азербайджан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8040996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>30d40fe8e27e2346111ebaae4c842ca2</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=120</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Албания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8034052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>70c9c199427566231ba19c51e260ec3c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=101</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Алжир</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8027107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ef809fa3e103aa1f7cf0d3259deb8d81</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=98</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Андорра</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8020163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bd3bb7f943f4eb97a3504f981f98f543</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=118</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Антильские Острова</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,801321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>614c6efbafbd9e1e87a02429371e91dd</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=33</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Аргентина</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,8006274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>260a7ac74cc5634d9a11db876bf35025</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=67</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Армения</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7999329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4abf46cda38a6f1ed3a593df7ba7f5f8</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=81</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Аруба</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7992385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>30936b8c6deed06b82bf7b49eb27e58c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=108</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Багамы</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7985440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a17f2c974af62c996cb2258d7c127e42</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=24</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Беларусь</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7978496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>37e26b7274fa33e2b7deeb69b90eec6f</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=23</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Бельгия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7971552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bf64e812f5d25f3f893f544de7cc882b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=93</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Бермуды</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7964607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ec4e7a3ef3c7684a03c13fbd1f61171a</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=28</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Болгария</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7957663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a75ec000d0f64698e87974a382efbd63</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=92</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Босния и Герцеговина</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,795071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bf2df6cb6bf6525d549a0dff655cd374</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=17</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Бразилия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7943774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>07764b3f6db5fc5e4955679e926f757a</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=83</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Вануату</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7936829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2d88fb1979390da86e81c9d5b8cf72ae</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=12</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Великобритания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7929885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>572f798d4e36dcce2dc5e8b0edf77e1a</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=8</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Венгрия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7922940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>761cdf251b02b383cc5b9b96bbe71289</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=99</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Венесуэла</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7915996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fcd9bfaaead59d35d39f2afe287d84a6</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=117</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Вьетнам</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7909052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0b11cc32fed91076f8d01ae0644468d1</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=100</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Гана</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7902107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0bac7873cefc296fc3bdc4fe1048b8b4</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=79</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Гватемала</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7895163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>917ddeca399bc1b2d1e6e940bff212fb</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=7</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Германия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,788821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>393f384854d9b0f9c2a92f9e26205879</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=69</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Германия (ГДР)</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7881274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425347</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>504261367da816ae5726d9fa572065fb</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=66</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Германия (ФРГ)</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7874329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>16da45ff5f94a7d231ecb5a3537b423e</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=50</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Гонконг</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7867385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>06e872c91aef121adff13fd006e5c000</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=40</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Греция</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7860440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2db9d34b6742daa336007122075bc92c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=45</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Грузия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7853496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>85485b3a865358a7ba4851c66af1d699</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=9</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Дания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7846552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1a48a91236807a398542b4f1c0cacc77</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=62</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Доминикана</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7839607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>65fcd062ab89905b4caec3bde95f8eaf</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=94</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Египет</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7832663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7d671cc587edc0dba7a0325b7391a2c7</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=112</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Замбия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,782571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>200f00613863eee454a6418e3c67739b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=32</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Израиль</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7818774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>aeeaa543981b20a501d5a8c90dce80b0</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=49</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Индия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7811829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>cdbabe51c669175d08834cd9d93057cd</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=52</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Индонезия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7804885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6debd5211f0245ef3597c1aea144063a</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=106</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Иордания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7797940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>25acd7136ddf776ff225e5c31cfc23c6</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=80</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Иран</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7790996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0802661bcbea09a9b2c9395e560928dc</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=1</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ирландия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7784052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a33510c239e64fd5e8b89b8c1f12346f</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=48</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Исландия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7777107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>cc7560a68d3d06eea15aadd1f8431485</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=27</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Испания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7770163195</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b8ce2607b70e86d607fe104bce8fa0ab</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=19</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Италия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,776321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8d94ca312b67867b5c87c737a2e19c38</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=42</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Казахстан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7756274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>44859cd5f22ec574a5716f932712a68a</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=87</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Камбоджа</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7749329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>71aa7ce6d29567e42831647efa2d3ddd</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=2</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Канада</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7742385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ffea74f40b564edc66ed4308f94e98fd</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=95</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Катар</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7735440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>290b20a05e4b33cb928d35c61223ae43</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=75</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Кения</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7728496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3e1de918d9272b27cb2b70bca99220ea</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=119</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Кипр</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7721552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>10471aae7a567f8611ff09083693b564</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=30</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Китай</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7714607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>f6d8d70bd1d2039002f18efea7b41293</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=36</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Колумбия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7707663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>9cffbb18c934eabd5f094019cd8b5eaf</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=115</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Конго</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,770071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3a2fc0cdf7d74fdfcd1000de754f117e</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=15</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Корея Южная</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7693774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6b29760512d466e5561c3eb5946b10cb</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=86</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Косово</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7686829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>31a058ed731c5082ed1d64d8fe318ced</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=35</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Куба</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7679885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ee29b2693f0fbb6e4a500e67622ac502</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=72</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Кыргызстан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7672940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1bcc0abc35da80dc5379cd86eaaa73be</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=107</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Лаос</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7665996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>996dc4387ff101632a69a1ec700fce7e</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=39</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Латвия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7659052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1b28cad272174e57fde2baebcbb890f7</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=73</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ливан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7652107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1b876d11490b1ff9c73df4872c08063e</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=63</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Литва</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7645163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b21248cdecbcbbc2dfe47078bc26332c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=3</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Люксембург</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,763821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2552e30ef2069291d50f531041433920</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=114</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мавритания</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7631274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>dcdbeed262f3db2a907c2b77c9a7fccd</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=59</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Македония</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7624329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>aeda21b377039759bc24ecaf1bde8a4b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=58</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Малайзия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7617385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>07664ac57f21ce6171763c310baabb0d</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=54</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мальта</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7610440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7c63c165567dbc57c5a6ed2e3595f354</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=110</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Марокко</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7603496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>f61e0ecddb537990331660493c42ef97</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=5</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мексика</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7596552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>29b1e44fa0074be7c751125b8337b40d</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=97</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Монголия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7589607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1d26dc53c68985970e484af6e97e4a50</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=64</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Намибия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7582663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b290ac513bf1e78650bc75d11572c3c7</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=77</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Нигерия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,757571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c912518c8f4fa68cc87382ccca440be1</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=38</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Нидерланды</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7568774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b5c3eb917ad02b61bdedf721aeea70d2</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=31</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Новая Зеландия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7561829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2d5352dd5b51bce2db7a042612897e15</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=29</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Норвегия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7554885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>751787bee700faada37843378ccb3480</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=68</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>ОАЭ</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7547940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>886099d1a8699c3200d2998e0fbd4711</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=71</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Панама</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7540996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>46e977dc9e86eedf940c71b603ec75cb</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=113</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Папуа - Новая Гвинея</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7534052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>99a50c9c32e4fe815199f6c92efa81de</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=60</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Перу</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7527107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>9ee402bce09eb47b05597abdf961c7c1</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=20</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Польша</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7520163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>91683c469a7592ab3f8b0e9690b93873</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=43</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Португалия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,751321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>506110afc287022a8d6771607eb9f0cd</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=96</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Пуэрто Рико</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7506274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>f1a84317eb7c28645c723aa879eed465</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=10</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Россия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7499329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8e0696b1504f7a34c42627b539e7b448</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=102</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Руанда</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7492385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1479ba9d45d4d10a07f57b9bf15f1230</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=61</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Румыния</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7485440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c439be46762f300ec8362ee4b2b7a38c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=78</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Саудовская Аравия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7478496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2355e6aa804153b7336b628b4f91b8ed</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=51</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Сербия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7471552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c0b3cd19d9ab8e7e5fbd40d17be2ee48</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=103</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Сербия и Черногория</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7464607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2c4cb68190c5f29ad64424e866de95c4</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=55</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Сингапур</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7457663195</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8f86e35667186f1ff0bc5e75c39beefa</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=57</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Словакия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,745071875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b747e198cda1a7c9c33fcd63b0beac64</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=91</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Словения</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7443774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>3c734065c57de3b649db42547fee224a</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=74</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Сомали</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7436829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>27d7d5a677373f532fe0aeec60db3aba</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=14</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>СССР</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7429885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e5c2b1b68a39689d0b431659991e4c24</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=76</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Судан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7422940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>55d34f9a2b57306f94a6f1568171b13c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=4</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>США</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7415996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>fb26e34ce5f1910b115a733feb2e6cbb</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=46</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Таиланд</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7409052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>549a775772afecbf2166c16dea777172</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=41</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Тайвань</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7402107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4400b87940914ff2474d9a5b16c55dd9</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=84</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Тунис</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7395163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7dfe2dc359f3f9500ad8fefb35053762</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=13</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Турция</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,738821875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8351616983657a92c31c180f7ad84d2a</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=105</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Узбекистан</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7381274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bf53fb1e0531e8378ec23b45c0582925</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=18</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Украина</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7374329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>0ece4574fc87c1f8ce4b0ac17ac5695a</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=90</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Уругвай</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7367385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>02b68429a2b6ad404d93e312c07bc335</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=111</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фиджи</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7360440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>94dfcecd4afbb7122e8c10434f373f5b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=53</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Филиппины</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7353496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>097826bb4e8d28b27601faf7c9474fe3</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=34</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Финляндия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7346552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>21c6e076c563d128d4d5bc550a1d4c4c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=6</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Франция</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7339607639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5db3107bb63ac9b9dc9e8d1f3ce221a7</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=104</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Французская Полинезия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7332663194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>92f7bc475955778c0abdb4be5c227e44</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=65</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Хорватия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,732571875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7dade4b23144bf0a48749b756602f41d</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=109</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Черногория</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7318774306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>24473f0dec9d0bcbf57a209067590830</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=56</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Чехия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7311829861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5d50e7f3125713f7a659c261710b9e46</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=21</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Чехословакия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7304885417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>1904d2a7ed60e08ac8522ebfaf0d2699</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=47</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Чили</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7297940972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e8ec8b0046f5dde91a0462f998979987</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=37</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Швейцария</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7290996528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4d8586c7e4bf3792e9f13ae4c447c809</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=26</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Швеция</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7284052083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>644a1716c4eb2a4517903207c161dca2</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=70</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Шри-Ланка</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7277107639</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>45f3f0af961303ee65e0c47c4ff4a7c6</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=85</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Эстония</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7270163194</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d8fdcc0e922df5166b7a38145971dfe8</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=116</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Эфиопия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,726321875</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>398d94fb9ae652627920e5742ade6ddc</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=44</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>ЮАР</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7256274306</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>163867ca2108e8a97dc27c0ff95daedb</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=16</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Югославия</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7249329861</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>63176a7f4348f99e564a20375ded891b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=82</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Югославия (ФР)</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7242385417</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c9381f68896e5a247ae592c582ab070f</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=121</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Южная Корея</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7235440972</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>61c29ce661f65aa4b89d13b5482cb26b</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=88</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ямайка</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7228496528</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c9a70cf54760cfb8cf44c8f6dc43e68c</ItemID>
              <ItemPath>serials=0&amp;min_kp=6&amp;country=22</ItemPath>
              <ParentID>d3060ac19d66b6058023c9c56b1faad4</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Япония</Value>
                </Property>
                <Property>
                  <ID>35</ID>
                  <Value>43231,7221552083</Value>
                </Property>
                <Property>
                  <ID>215</ID>
                  <Value>-mpFileName</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>43232,1041425463</Value>
                </Property>
              </Properties>
            </Item>
          </ChildItems>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>a2668f2a456b7a83de113855fa7e057f</ItemID>
      <ItemPath>top=imdb</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>09 TOP250 IMDb</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43231,7214607639</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425463</Value>
        </Property>
      </Properties>
    </Item>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>cbe0e3baf783c49092513b1e06010039</ItemID>
      <ItemPath>top=kp</ItemPath>
      <ParentID>d1f1963f-a470-45fc-8501-66ef925dabdd</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>10 TOP250 Kinopoisk</Value>
        </Property>
        <Property>
          <ID>35</ID>
          <Value>43231,7207663194</Value>
        </Property>
        <Property>
          <ID>215</ID>
          <Value>-mpCreateDate</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>43232,1041425463</Value>
        </Property>
      </Properties>
    </Item>
  </ChildItems>
</HmsMediaItem>
