<?xml version="1.0" encoding="utf-8"?>
<HmsMediaItem>
  <MediaType>3</MediaType>
  <ClassID>51</ClassID>
  <ItemID>daa53b34-8803-472a-855e-e1ddb70079a1</ItemID>
  <ItemPath></ItemPath>
  <ParentID>234DF17B-418C-4FDC-9DFE-CD0C586D2E76</ParentID>
  <Properties>
    <Property>
      <ID>4</ID>
      <Value>Torrent TV (без транскода)</Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></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>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>570</ID>
      <Value>2</Value>
    </Property>
    <Property>
      <ID>93</ID>
      <Value>41291,401043287</Value>
    </Property>
    <Property>
      <ID>550</ID>
      <Value>const
//csCommandLine1 = &apos;cmd://"%s"   --udp-caching=1500 --no-crashdump --play-and-exit --language en -Idummy --demuxdump-file="&lt;OUTPUT FILE&gt;" --access=p2p_access "%s" :demux=dump&apos;;
  csCommandLine1 = &apos;cmd://"%s"   --no-crashdump --play-and-exit --language en -Idummy --demuxdump-file="&lt;OUTPUT FILE&gt;" vlc://pause:2 --access=p2p_access "%s" :demux=dump&apos;;
  csCommandLine2 = &apos;cmd://"%s"   --no-crashdump --play-and-exit --language en --no-auto-preparse --no-playlist-autostart --extraintf=dummy -Iluaintf --lua-intf=hmsts --lua-config "hmsts={torrentfile=&apos;#39&apos;%s&apos;#39&apos;, torrentsubfile=&apos;#39&apos;%s&apos;#39&apos;}" --demuxdump-file="&lt;OUTPUT FILE&gt;" --access=p2p_access "%s"&apos;;
   
  csHmsTsLuaScript = 
    &apos;local PlaylistItem&apos;#13#10 + 
    &apos;&apos;#13#10 +
    &apos;local bPlaylistExists = 1&apos;#13#10 +
    &apos;local iPlaylistItemID = -1&apos;#13#10 +
    &apos;&apos;#13#10 +
    &apos;while (bPlaylistExists == 1) and not vlc.misc.should_die() do&apos;#13#10 +
    &apos;  bPlaylistExists = 0&apos;#13#10 +
    &apos;  PlaylistItem = vlc.playlist.get("playlist")&apos;#13#10 +
    &apos;  for i = 1, #PlaylistItem.children do&apos;#13#10 +
    &apos;    if (PlaylistItem.children[i].name == config.torrentfile) then&apos;#13#10 +
    &apos;      bPlaylistExists = 1&apos;#13#10 +
    &apos;    end&apos;#13#10 +
    &apos;  end&apos;#13#10 +
    &apos;  if (bPlaylistExists == 0) then&apos;#13#10 + 
    &apos;    for i = 1, #PlaylistItem.children do&apos;#13#10 +
    &apos;      if PlaylistItem.children[i].name == config.torrentsubfile then&apos;#13#10 +
    &apos;        iPlaylistItemID = PlaylistItem.children[i].id&apos;#13#10 +
    &apos;        break&apos;#13#10 +
    &apos;      end&apos;#13#10 +
    &apos;    end&apos;#13#10 +
    &apos;  else&apos;#13#10 +
    &apos;    vlc.misc.mwait ( vlc.misc.mdate() + 10000)&apos;#13#10 +
    &apos;  end&apos;#13#10 +
    &apos;end&apos;#13#10 +
    &apos;&apos;#13#10 +
    &apos;vlc.var.create(vlc.object.libvlc(), "demux", "dump")&apos;#13#10 +
    &apos;&apos;#13#10 +
    &apos;if iPlaylistItemID ~= -1 then&apos;#13#10 + 
    &apos;  vlc.playlist.goto(iPlaylistItemID)&apos;#13#10 +
    &apos;end&apos;#13#10; 

 
procedure CreateHmsTsLuaScript;
var
  sFileName: string;
begin
  sFileName := IncludeTrailingBackslash(RegistryRead(&apos;Software\AceStream\InstallDir&apos;)) + &apos;Player\lua\intf\hmsts.lua&apos;;
  if not FileExists(sFileName) then
    HmsStringToFile(csHmsTsLuaScript, sFileName)
end; 

// ---------------------------------------------------------------------------------------
// Получение пути TorrentStream плеера

function GetTsPlayerPath: string;
var
  sResult: string;
begin
  sResult := IncludeTrailingBackslash(RegistryRead(&apos;Software\AceStream\InstallDir&apos;)) + &apos;player\ace_player.exe&apos;;
  Result := ExtractShortPathName(sResult);
  if Result = &apos;&apos; then Result := sResult
end;

procedure CopyProperties(aSourceItem, aDestItem: THmsScriptMediaItem; const aProperties: array of Integer);
var
  i: Integer;
begin
  for i := 0 to Length(aProperties) - 1 do  
    aDestItem.Properties[aProperties[i]] := aSourceItem.Properties[aProperties[i]]
end;

function EscapeChars(const aText: string): string;
var
  i: Integer;
begin
  Result := &apos;&apos;;
  for i := 1 to Length(aText) do begin
    if aText[i] in [#39, &apos;\&apos;] then
      Result := Result + &apos;\&apos;;
    Result := Result + aText[i]
  end    
end;

procedure CreateTorrentSubItem(const aName, aPath: string; aFileSize: Variant; 
                       const aTorrentFileName: string; aSubFileIndex: Integer);
var
  sName: string;
  TorrentSubItem: THmsScriptMediaItem;
begin
  if HmsFileMediaType(aName) = mtVideo then begin
    TorrentSubItem := HmsCreateMediaItem(aName, PodcastItem.ItemID, aPath);        
    if TorrentSubItem &lt;&gt; nil then begin        
      TorrentSubItem.Properties[mpiFileSize] := aFileSize;
      if aPath &lt;&gt; &apos;&apos; then
        sName := IncludeTrailingBackslash(aPath) + aName
      else
        sName := aName;
      TorrentSubItem.Properties[mpiMediaResourceLink] := 
         Format(csCommandLine2, [GetTsPlayerPath, EscapeChars(ExtractFileName(aTorrentFileName)), EscapeChars(sName), aTorrentFileName]);
      CopyProperties(PodcastItem, TorrentSubItem, [mpiFilePath, mpiThumbnail, mpiComment, mpiTimeLength, mpiYear, mpiGenre, mpiDirector, mpiCreateDate]);
      TorrentSubItem.Properties[mpiTitle] := aName;         
    end
  end    
end;

procedure CreateTorrentItems(const aFileName: string);
var
  i: Integer;
  TorrentFile: TTorrentFile;  
  TorrentSubFile: TTorrentSubFile;  
begin
  TorrentFile := TTorrentFile.Create;  
  try
    TorrentFile.LoadFromFile(aFileName);
    if SameText(PodcastItem.Properties[mpiTitle], ExtractFileName(mpFilePath)) then
      PodcastItem.Properties[mpiTitle] := TorrentFile.Name;
    if TorrentFile.MultiFile then    
      for i := 0 to TorrentFile.Count - 1 do begin
        TorrentSubFile := TorrentFile.Files[i];
        CreateTorrentSubItem(TorrentSubFile.Name, TorrentSubFile.Path, TorrentSubFile.Length, aFileName, i)         
      end      
    else     
      CreateTorrentSubItem(TorrentFile.Name, &apos;&apos;, TorrentFile.Length, aFileName, 0)
  finally
    TorrentFile.Free
  end    
end;

var
  bFileExists: Boolean; iFlags: Integer;
  sID, sTmpFile, sWebPage, sHeaders, sAnswerHeaders, sToken, sCookie: string;
  mail, pass, sPage: string;
begin
  Randomize; 
    
  sHeaders := mpFilePath+#10#13+
              &apos;Accept-Encoding: gzip, deflate&apos;+#10#13+
              &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36&apos;+#10#13;

  iFlags   := StrToInt(&apos;$00200000&apos;); // INTERNET_FLAG_RELOAD и INTERNET_FLAG_NO_COOKIES - куки добавляем сами
//  HmsSendRequestEx(&apos;1ttv.org&apos;, &apos;/banhammer/pid&apos;, &apos;GET&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;&apos;, 80, iFlags, sAnswerHeaders, true);
//  HmsRegExMatch(&apos;X-BH-Token: (.*?)\r&apos;, sAnswerHeaders, sToken); 
//  sHeaders := sHeaders+&apos;Cookie: BHC=&apos;+sToken+#10#13;

  mail := HmsHttpEncode( HmsUtf8Encode(mpPodcastAuthorizationUserName));  // логин
  pass := HmsHttpEncode( HmsUtf8Encode(mpPodcastAuthorizationPassword));  // пароль
  HmsSendRequestEx(&apos;1ttv.org&apos;, &apos;/auth.php&apos;, &apos;POST&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;email=&apos;+mail+&apos;&amp;password=&apos;+pass+&apos;&amp;remember=on&amp;enter=%D0%92%D0%BE%D0%B9%D1%82%D0%B8&apos;,80, iFlags, sAnswerHeaders, true);

  if HmsRegExMatch(&apos;(PHPSESSID=.*?);&apos;, sAnswerHeaders, sCookie) then
    sHeaders := sHeaders+&apos;Cookie: &apos;+sCookie+#10#13;
  if HmsRegExMatch(&apos;(torrenttv_remember=.*?);&apos;, sAnswerHeaders, sCookie) then
    sHeaders := sHeaders+&apos;Cookie: &apos;+sCookie+#10#13;

  HmsRegExMatch(&apos;//.*?(/.*)&apos;, mpFilePath, sPage);
  sWebPage := HmsSendRequestEx(&apos;1ttv.org&apos;, sPage, &apos;GET&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, &apos;&apos;, 80, iFlags, sAnswerHeaders, true);
  sWebPage := HmsUtf8Decode(sWebPage);
  sWebPage := HmsRemoveLineBreaks(sWebPage);

  if not HmsRegExMatch(&apos;loadTorrent..(.*?)",&apos;    , sWebPage, sID) then
         HmsRegExMatch(&apos;this.loadPlayer..(.*?)",&apos;, sWebPage, sID);
  if (sID =&apos;&apos;) then sWebPage := HmsDownloadURL(sID, &apos;Referer: &apos;+sHeaders, true); 
  
  if (sID&lt;&gt;&apos;&apos;) then HmsLogMessage(1, &apos;Открываем по ID &apos; + mpTitle ) 
               else HmsLogMessage(1, &apos;Открываем по торренту &apos; + mpTitle );

  mpTitle  := Copy(mpTitle, 1, 20);
  sTmpFile := HmsTempDirectory + &apos;\&apos; + mpTitle + &apos;.acelive&apos;;
  bFileExists := FileExists(sTmpFile);
    
  if (sID&lt;&gt;&apos;&apos;) then begin
    MediaResourceLink := Format(csCommandLine1, [GetTsPlayerPath, sID]);
    exit;
  end;

  if not bFileExists then bFileExists := HmsDownloadURLToFile(sID, sTmpFile);

  if bFileExists then begin
    MediaResourceLink := Format(csCommandLine1, [GetTsPlayerPath, sTmpFile]);
  end else
    HmsLogMessage(1, &apos;Ошибка при загрузке торрента "&apos; + mpFilePath + &apos;"&apos;);

end.</Value>
    </Property>
    <Property>
      <ID>551</ID>
      <Value>PascalScript</Value>
    </Property>
    <Property>
      <ID>530</ID>
      <Value>const
  PCRE_CASELESS   = $00000001;  
  PCRE_DOTALL     = $00000004;
  PCRE_SINGLELINE = PCRE_CASELESS + PCRE_DOTALL;       
  
var
  sWebPage, sAnswerHeaders, sToken, sHeaders, sPage, mail, pass, sCookie: string;
  ItemsRegExpr: TRegExpr; i, iFlags: Integer; gsNameArray: string; 
  gsHeaders: String;
   
/////////////////////////////////////////////////////////////////////////////// 
Procedure DeleteOldLinks();
Var
  i: Integer; Item: THmsScriptMediaItem;
Begin
  For i := FolderItem.ChildCount-1 DownTo 0 Do Begin
    Item := FolderItem.ChildItems[i];
    If Item[4001] = &apos;1&apos; Then Item.Delete;
  End;
End;
///////////////////////////////////////////////////////////////////////////////
Function Login1TTV(): Boolean;
Var
  sName, sUser, sPass, sPost, sHeaders, sAnswHeaders, sCookie: String;
  iFlags: Integer;
Begin 
  sHeaders := &apos;http://1ttv.org/auth.php&apos;+#10#13+
              &apos;Origin: http://1ttv.org&apos;+#10#13;
  iFlags := $00200000; // INTERNET_FLAG_NO_AUTO_REDIRECT=0x00200000
  sUser  := HmsPercentEncode(HmsUtf8Encode(mpPodcastAuthorizationUserName));
  sPass  := HmsPercentEncode(HmsUtf8Encode(mpPodcastAuthorizationPassword));
  sPost  := &apos;email=&apos;+sUser+&apos;&amp;password=&apos;+sPass+&apos;&amp;enter=%D0%92%D0%BE%D0%B9%D1%82%D0%B8&apos;;
  HmsSendRequestEx(&apos;1ttv.org&apos;, &apos;/auth.php&apos;, &apos;POST&apos;, &apos;application/x-www-form-urlencoded&apos;, sHeaders, sPost, 80, iFlags, sAnswHeaders, true);
  Result := HmsRegExMatch(&apos;(PHPSESSID=.*?);&apos;, sAnswHeaders, sCookie);
  If Result Then 
    gsHeaders := gsHeaders+&apos;Cookie: &apos;+sCookie+#10#13
  Else 
    HmsLogMessage(2, "Ошибка авторизации на 1ttv.org");
End;
/////////////////////////////////////////////////////////////////////////////// 
procedure Kanal(const aItemDescr: string);
var
  sLink, sName, sImg, sBase: string;
  Item: THmsScriptMediaItem;
begin
  HmsRegExMatch(&apos;&lt;a[^&gt;]+href="(.*?)"&apos;   , aItemDescr, sLink); 
  HmsRegExMatch(&apos;&lt;strong&gt;(.*?)&lt;/strong&gt;&apos;, aItemDescr, sName);
  HmsRegExMatch(&apos;&lt;img src="(.*?)"&apos;      , aItemDescr, sImg );
  
  sBase := &apos;http://1ttv.org/&apos;;     // База, для коротких (относительных) ссылок
  sName := HmsHtmlToText(sName);        // Если в названиях будут теги html - избавляемся от них
  sLink := HmsExpandLink(sLink, sBase); // Дополняем, если нужно, до полной ссылки
  sImg  := HmsExpandLink(sImg , sBase); // Дополняем, если нужно, до полной ссылки
  
  // Пытаемся найти элемент по наименованию
  Item := FolderItem.FindItemByProperty(mpiTitle, sName);
  // Если не найден - создаём
  if Item = nil then Item := HmsCreateMediaItem(sLink, FolderItem.ItemID);
  // Обновляем всю информацию
  Item[mpiFilePath      ] := sLink;
  Item[mpiTitle         ] := sName;
  Item[mpiThumbnail     ] := sImg; 
  Item[mpiTimeLength    ] := &apos;11:40:00.000&apos;; // длинная длительность 
  Item[mpiInternetItem  ] := &apos;1&apos;;
  Item[mpiDVDAspectRatio] := &apos;16:9&apos;;
  Item[4001             ] := &apos;&apos;; // Снимаем пометку удаления
end;
  
///////////////////////////////////////////////////////////////////////////////
// ========================================================================= // 
begin
  // Помечаем все созданные ранее ссылки для удаления
  For i := 0 to FolderItem.ChildCount-1 Do FolderItem.ChildItems[i].Properties[4001] := &apos;1&apos;;

gsHeaders := &apos;Referer: &apos;+mpFilePath+#10#13+
               &apos;Origin: http://1ttv.org&apos;+#10#13+
               &apos;Accept-Encoding: gzip, deflate&apos;+#10#13+
               &apos;User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36&apos;+#10#13;

  If mpPodcastAuthorizationUserName&lt;&gt;&apos;&apos; Then Login1TTV();
  
  sWebPage := HmsDownloadURL(mpFilePath, gsHeaders, True);
  if (Pos(&apos;film_selector.php&apos;, sPage)&gt;1) then
    for i := 2 to 20 do  sWebPage := sWebPage+HmsDownloadURL(mpFilePath+&apos;&amp;page=&apos;+IntToStr(i), gsHeaders, True);
  sWebPage := HmsUtf8Decode(sWebPage);
  sWebPage := HmsRemoveLineBreaks(sWebPage);
     
  ItemsRegExpr := TRegExpr.Create(&apos;best-channels-content(.*?)&lt;/h5&gt;&apos;, PCRE_SINGLELINE);  // поиск блоков, который будет между скобок
  try
    if ItemsRegExpr.Search(sWebPage) then repeat // искать в исх.строке совпадение и повторять
      Kanal(ItemsRegExpr.Match)                  // запускать процедуру получения свойств фильма каждый раз как найден объект
    until not ItemsRegExpr.SearchAgain; 
  finally       
    ItemsRegExpr.Free;
  end;

  DeleteOldLinks(); // Удаляем ссылки, имён которых мы не обновляли (устаревшие)
end.</Value>
    </Property>
    <Property>
      <ID>531</ID>
      <Value>PascalScript</Value>
    </Property>
    <Property>
      <ID>571</ID>
      <Value>const
  PCRE_CASELESS   = $00000001;  
  PCRE_DOTALL     = $00000004;
  PCRE_SINGLELINE = PCRE_CASELESS + PCRE_DOTALL;       
  reg1 = &apos;(\d\d\d)&apos;;
  reg2 = &apos;(\d\d)&apos;;
  reg3 = &apos;(\d)&apos;;
  cifr = [&apos;0&apos;,&apos;1&apos;,&apos;2&apos;,&apos;3&apos;,&apos;4&apos;,&apos;5&apos;,&apos;6&apos;,&apos;7&apos;,&apos;8&apos;,&apos;9&apos;];
  
var
  s,s1,s2,ini, file,kat,id,pap,pap1,mes,god,adres: string;
  j,i,aPercent,e,grp:Integer;
  ItemsRegExpr,ItemsRegExpr1,ItemsRegExpr2: TRegExpr;
  sWebPage_,sWebPage_1,sWebPage,sWebPage1,sWebPage2,total,total1: string;
  Item: THmsScriptMediaItem;
  myYear, myMonth, myDay : Word;
  k:byte;
kol,adr,n,adr_m,adr_f: string;
    kol_i,ka:integer;
    dlit,nazv,thum:string;
  
 
   procedure kanal(const aItemDescr2: string); 
   begin
         
             
        HmsRegExMatch(&apos;"(.*?)"&apos;, aItemDescr2, adr); 
         HmsRegExMatch(&apos;"&gt;(.*?)&lt;/a&gt;&apos;, aItemDescr2, nazv);
     //    HmsRegExMatch(&apos;&lt;a href="(.*?)"&apos;, aItemDescr2, thum);
          adr:=&apos;http://1ttv.org/&apos;+adr;
        Item := HmsCreateMediaItem(adr, FolderItem.ItemID,kat ); 
         
          Item.Properties[mpiTitle] := nazv ;
          Item.Properties[mpiThumbnail ] := thum; 
   
   
   end;
  
  
  
 procedure kategor(const aItemDescr: string);   // поцедура выделение свойств фильмов   aItemDescr -строка -результат поиска ItemsRegExpr1.Match между  &lt;li&gt; и &lt;/li&gt;
  
  var              //   обьявление в процедуре              
    Item: THmsScriptMediaItem;   // обьект Item из класса THmsScriptMediaItem -пункт в перечне фильмов
            //  строка
    

    
  begin               //      начало процедуры
       HmsRegExMatch(&apos;style="color: #FFF;"&gt;(.*?)&lt;/a&gt;&apos;, aItemDescr, kat);
       
       ItemsRegExpr2 := TRegExpr.Create(&apos;&lt;a href=(.*?)&lt;/li&gt;&apos;,PCRE_SINGLELINE); 
        try
      if ItemsRegExpr2.Search(aItemDescr) then repeat    //искать в исх.строке объект и повторять
      kanal(ItemsRegExpr2.Match)   //запускать процедуру получения свойств фильма каждый раз как найден объект
      until not ItemsRegExpr2.SearchAgain; 
    finally       
      ItemsRegExpr2.Free;
        end; 
         
       
  end;           
  

 


 
begin
       //j:=0;
  
   // FolderItem.DeleteChildItems; 
  //  mpfilepath:=&apos;http://1ttv.org/category.php?cat=8&apos;;
    mpfilepath:=&apos;http://1ttv.org&apos;;
    sWebPage1 := HmsDownloadURL(mpfilepath); 
     sWebPage1 :=HmsUtf8Decode (sWebPage1);
    sWebPage1 :=HmsRemoveLineBreaks(sWebPage1);
     
 //  
    
  
      ItemsRegExpr1 := TRegExpr.Create(&apos;category.php(.*?)&lt;/li&gt;&lt;li&gt;&apos;,PCRE_SINGLELINE);  //создать объект с содерж. между кавычек
    try
      if ItemsRegExpr1.Search(sWebPage1) then repeat    //искать в исх.строке объект и повторять
       kategor(ItemsRegExpr1.Match)   //запускать процедуру получения свойств фильма каждый раз как найден объект
      until not ItemsRegExpr1.SearchAgain; 
    finally       
      ItemsRegExpr1.Free;
     end  ; 

HmsHideInformation  ;  


end.</Value>
    </Property>
    <Property>
      <ID>572</ID>
      <Value>PascalScript</Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>-1</ID>
      <Value></Value>
    </Property>
    <Property>
      <ID>245</ID>
      <Value>daa53b34-8803-472a-855e-e1ddb70079a1</Value>
    </Property>
    <Property>
      <ID>95</ID>
      <Value>3</Value>
    </Property>
    <Property>
      <ID>215</ID>
      <Value>mpTitle</Value>
    </Property>
    <Property>
      <ID>55</ID>
      <Value>http://1ttv.org/images/logo.png</Value>
    </Property>
    <Property>
      <ID>43</ID>
      <Value>video/mpeg</Value>
    </Property>
    <Property>
      <ID>42</ID>
      <Value>2</Value>
    </Property>
  </Properties>
  <ChildItems>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>f46a993e-65db-4f37-84e0-9aedaba77ee6</ItemID>
      <ItemPath></ItemPath>
      <ParentID>daa53b34-8803-472a-855e-e1ddb70079a1</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>Избранные</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>522</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>f46a993e-65db-4f37-84e0-9aedaba77ee6</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41784,5774392245</Value>
        </Property>
        <Property>
          <ID>525</ID>
          <Value>42260,0773091088</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
      </Properties>
    </Item>
    <Item>
      <ClassID>53</ClassID>
      <ItemID>b68d3085-0e62-4a5e-b096-ef62dfc7e953</ItemID>
      <ItemPath>http://1ttv.org/hd_channels.php</ItemPath>
      <ParentID>daa53b34-8803-472a-855e-e1ddb70079a1</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>HD</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>522</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>b68d3085-0e62-4a5e-b096-ef62dfc7e953</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41657,8676109375</Value>
        </Property>
        <Property>
          <ID>525</ID>
          <Value>42273,9765978819</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>43</ID>
          <Value>video/mpeg</Value>
        </Property>
      </Properties>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ItemID>
      <ItemPath></ItemPath>
      <ParentID>daa53b34-8803-472a-855e-e1ddb70079a1</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>Категории</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>522</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>570</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>41791,097291713</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>4a64cb82-7fe5-436d-a068-fd1759a220e4</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=9</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>XXX</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>4a64cb82-7fe5-436d-a068-fd1759a220e4</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41657,8653941435</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42266,3758511111</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>650f99de-f849-4864-8e81-3815934eb051</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=10</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Мужские</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4038803819</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42273,8081762037</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>81b3949c-8d92-449f-a1e0-3d3ce52940c6</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=2</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Музыка</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4036305208</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>81b3949c-8d92-449f-a1e0-3d3ce52940c6</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42266,7936856366</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3a5ef185-80cc-43e1-ae09-5177f06e5df3</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=6</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Познавательные</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,403352581</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>3a5ef185-80cc-43e1-ae09-5177f06e5df3</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42266,7633458333</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>01114956-a44c-4ab3-a832-cd9be25bd457</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=4</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Спорт</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4031054167</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42252,9144839005</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3c131ec2-b556-48d2-9931-1236e449d364</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=3</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильмы</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4028075116</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>3c131ec2-b556-48d2-9931-1236e449d364</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42266,7958035301</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8d821786-4281-4ed6-b1d6-51534694a017</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=8</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Развлекательные</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4022379282</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>8d821786-4281-4ed6-b1d6-51534694a017</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42252,9127474074</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>b8c820f0-a804-4b11-a631-b40818ba29b2</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=7</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Новостные</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4017085185</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42245,275374919</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>a1775721-0c9f-48ac-93d1-1d2fb032a37e</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=5</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Общие</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>41291,4013226042</Value>
            </Property>
            <Property>
              <ID>530</ID>
              <Value>const
  PCRE_CASELESS   = $00000001;  
  PCRE_DOTALL     = $00000004;
  PCRE_SINGLELINE = PCRE_CASELESS + PCRE_DOTALL;       
  reg1 = &apos;(\d\d\d)&apos;;
  reg2 = &apos;(\d\d)&apos;;
  reg3 = &apos;(\d)&apos;;
  cifr = [&apos;0&apos;,&apos;1&apos;,&apos;2&apos;,&apos;3&apos;,&apos;4&apos;,&apos;5&apos;,&apos;6&apos;,&apos;7&apos;,&apos;8&apos;,&apos;9&apos;];
  
var
  s,s1,s2,ini, file,kat,id,pap,pap1,mes,god,adres: string;
  j,i,aPercent,e,grp:Integer;
  ItemsRegExpr,ItemsRegExpr1,ItemsRegExpr2: TRegExpr;
  sWebPage_,sWebPage_1,sWebPage,sWebPage1,sWebPage2,total,total1: string;
  Item: THmsScriptMediaItem;
  myYear, myMonth, myDay : Word;
  k:byte;
kol,adr,n,adr_m,adr_f: string;
    kol_i,ka:integer;
    dlit,nazv,thum:string;
  
 
   procedure kanal(const aItemDescr2: string); 
   begin
         
             
        HmsRegExMatch(&apos;&lt;a href="(.*?)"&apos;, aItemDescr2, adr); 
         HmsRegExMatch(&apos;&lt;strong&gt;(.*?)&lt;/strong&gt;&apos;, aItemDescr2, nazv);
         HmsRegExMatch(&apos;&lt;a href="(.*?)"&apos;, aItemDescr2, thum);
          adr:=&apos;http://1ttv.org/&apos;+adr;
        Item := HmsCreateMediaItem(adr, FolderItem.ItemID, ); 
         
          Item.Properties[mpiTitle] := nazv ;
          Item.Properties[mpiThumbnail ] := thum; 
   
   
   end;
  
  
  
 procedure kategor(const aItemDescr: string);   // поцедура выделение свойств фильмов   aItemDescr -строка -результат поиска ItemsRegExpr1.Match между  &lt;li&gt; и &lt;/li&gt;
  
  var              //   обьявление в процедуре              
    Item: THmsScriptMediaItem;   // обьект Item из класса THmsScriptMediaItem -пункт в перечне фильмов
            //  строка
    

    
  begin               //      начало процедуры
       HmsRegExMatch(&apos;style="color: #FFF;"&gt;(.*?)&lt;/a&gt;&apos;, sWebPage1, kat);
       
       ItemsRegExpr2 := TRegExpr.Create(&apos;&lt;li onclick=(.*?)&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&apos;,PCRE_SINGLELINE); 
        try
      if ItemsRegExpr2.Search(aItemDescr) then repeat    //искать в исх.строке объект и повторять
      kanal(ItemsRegExpr2.Match)   //запускать процедуру получения свойств фильма каждый раз как найден объект
      until not ItemsRegExpr2.SearchAgain; 
    finally       
      ItemsRegExpr2.Free;
        end; 
         
       
  end;           
  

 


 
begin
       //j:=0;
  
    FolderItem.DeleteChildItems; 
  //  mpfilepath:=&apos;http://1ttv.org/category.php?cat=8&apos;;
    sWebPage1 := HmsDownloadURL(mpfilepath); 
     sWebPage1 :=HmsUtf8Decode (sWebPage1);
    sWebPage1 :=HmsRemoveLineBreaks(sWebPage1);
     
 //  
    
  
      ItemsRegExpr1 := TRegExpr.Create(&apos;&lt;div class="best-channels-content"(.*?)&lt;/h5&gt;&apos;,PCRE_SINGLELINE);  //создать объект с содерж. между кавычек
    try
      if ItemsRegExpr1.Search(sWebPage1) then repeat    //искать в исх.строке объект и повторять
       kanal(ItemsRegExpr1.Match)   //запускать процедуру получения свойств фильма каждый раз как найден объект
      until not ItemsRegExpr1.SearchAgain; 
    finally       
      ItemsRegExpr1.Free;
     end  ; 

HmsHideInformation  ;  


end.</Value>
            </Property>
            <Property>
              <ID>531</ID>
              <Value>PascalScript</Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>-1</ID>
              <Value></Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>a1775721-0c9f-48ac-93d1-1d2fb032a37e</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42242,920726713</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>3fd6a69b-18b1-4fbd-b043-a397aaa2b868</ItemID>
          <ItemPath>http://1ttv.org/on_moderation.php</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>На модерации</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>3fd6a69b-18b1-4fbd-b043-a397aaa2b868</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,8126561921</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42272,7279128588</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>73a2c4d3-a94a-4476-8b9e-f59201547bd3</ItemID>
          <ItemPath>http://1ttv.org/index.php</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Популярные</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>73a2c4d3-a94a-4476-8b9e-f59201547bd3</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,8143009144</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42268,9229877546</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>d8c32d90-fb5f-4230-8890-b27e7dbe1052</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=1</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Детские</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>d8c32d90-fb5f-4230-8890-b27e7dbe1052</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,9355829745</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42250,7459834028</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>9b91fabf-dd19-4b50-8890-4d81d19dfda9</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=11</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Региональные</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>9b91fabf-dd19-4b50-8890-4d81d19dfda9</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,9364160069</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42266,7946577431</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>69daf825-1e12-44cf-940e-679c69a7332f</ItemID>
          <ItemPath>http://1ttv.org/category.php?cat=12</ItemPath>
          <ParentID>afe0805e-2e1d-4d5d-af10-c1e04504f3a0</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Религиозные</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>69daf825-1e12-44cf-940e-679c69a7332f</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42041,9385848611</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42266,7953481134</Value>
            </Property>
          </Properties>
        </Item>
      </ChildItems>
    </Item>
    <Item>
      <ClassID>51</ClassID>
      <ItemID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ItemID>
      <ItemPath></ItemPath>
      <ParentID>daa53b34-8803-472a-855e-e1ddb70079a1</ParentID>
      <Properties>
        <Property>
          <ID>515</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>512</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>532</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>700</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>553</ID>
          <Value>2</Value>
        </Property>
        <Property>
          <ID>4</ID>
          <Value>Фильмы</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>522</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>570</ID>
          <Value>0</Value>
        </Property>
        <Property>
          <ID>245</ID>
          <Value>5c35b398-8e05-4ed9-ba01-76268c2e1197</Value>
        </Property>
        <Property>
          <ID>93</ID>
          <Value>42181,7637193287</Value>
        </Property>
        <Property>
          <ID>50</ID>
          <Value>AceStream (Входной поток)</Value>
        </Property>
        <Property>
          <ID>42</ID>
          <Value>3</Value>
        </Property>
      </Properties>
      <ChildItems>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>5ac45198-dbe3-4c8a-b5cb-46047cd7981e</ItemID>
          <ItemPath>http://1ttv.org/films.php</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Главная</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>5ac45198-dbe3-4c8a-b5cb-46047cd7981e</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7652742824</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42273,9827638426</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>1c9b6217-09c5-489c-8d77-334901c49e22</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?new&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Новинки</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>1c9b6217-09c5-489c-8d77-334901c49e22</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7672834722</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42259,5109152315</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>15a3cf0d-ff14-4d2f-936e-c2b7b4c10f07</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?serials&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Сериалы</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>15a3cf0d-ff14-4d2f-936e-c2b7b4c10f07</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7681074653</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42242,9213754514</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>84d981ac-af37-4dc6-aa7f-cce1d4bcb4f3</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?last_added</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Последние фильмы</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>84d981ac-af37-4dc6-aa7f-cce1d4bcb4f3</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7694552431</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42266,7605309954</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>0de5a602-e8da-42f7-b746-712f10e53db5</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?specific=1080&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильмы 1080</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>0de5a602-e8da-42f7-b746-712f10e53db5</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7721687963</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42243,9026330671</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>8b1a06a8-906c-42c8-9885-1bd356b86682</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?specific=hd&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильмы 720</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>8b1a06a8-906c-42c8-9885-1bd356b86682</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7728997801</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42242,9421420718</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>53</ClassID>
          <ItemID>67caf764-c4eb-4f6c-8f98-9b7d4b33aa9e</ItemID>
          <ItemPath>http://1ttv.org/film_selector.php?specific=3d&amp;sort_type=date</ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value>Фильмы 3D</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>67caf764-c4eb-4f6c-8f98-9b7d4b33aa9e</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7767627083</Value>
            </Property>
            <Property>
              <ID>525</ID>
              <Value>42266,7621700231</Value>
            </Property>
          </Properties>
        </Item>
        <Item>
          <ClassID>51</ClassID>
          <ItemID>28cbf1d9-383a-4903-bd43-ec8420e68634</ItemID>
          <ItemPath></ItemPath>
          <ParentID>5c35b398-8e05-4ed9-ba01-76268c2e1197</ParentID>
          <Properties>
            <Property>
              <ID>515</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>512</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>532</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>700</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>553</ID>
              <Value>2</Value>
            </Property>
            <Property>
              <ID>42</ID>
              <Value>3</Value>
            </Property>
            <Property>
              <ID>4</ID>
              <Value> Категории</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>522</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>570</ID>
              <Value>0</Value>
            </Property>
            <Property>
              <ID>245</ID>
              <Value>28cbf1d9-383a-4903-bd43-ec8420e68634</Value>
            </Property>
            <Property>
              <ID>93</ID>
              <Value>42181,7843086458</Value>
            </Property>
          </Properties>
          <ChildItems>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>5ce7d6ec-d1d6-44e0-a62d-b80e675bc9f5</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=293&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Аниме</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>5ce7d6ec-d1d6-44e0-a62d-b80e675bc9f5</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7846729282</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,7847406019</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>376ca783-2b11-43f9-9832-e020df5eb6cb</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=306&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Биография</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>376ca783-2b11-43f9-9832-e020df5eb6cb</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,786460706</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,7865255556</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7daa60dc-ca37-4b43-a178-91b89d977751</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=279&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Боевик</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>7daa60dc-ca37-4b43-a178-91b89d977751</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7926891898</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,7927817361</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ab401b7f-81ab-41aa-95db-3d8c85466746</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=326&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Вестерн</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>ab401b7f-81ab-41aa-95db-3d8c85466746</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7938823958</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,7939404282</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>cb0d0ed9-d453-43cc-9105-50a3a4d4fc2d</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=315&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Военный</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>cb0d0ed9-d453-43cc-9105-50a3a4d4fc2d</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7944740278</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,7945553588</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ebe82366-bdf9-4676-a60c-ee95a9b425c3</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=313&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Детектив</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>ebe82366-bdf9-4676-a60c-ee95a9b425c3</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7964300579</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,7965071528</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>aeb6b1a6-7597-46f2-9d3f-075f39669c50</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=308&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Детский</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>aeb6b1a6-7597-46f2-9d3f-075f39669c50</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7971980787</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,7972696643</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>2eea7b3e-82a9-4e2b-b06d-355abfbf5c8f</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=314&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>XXX</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>2eea7b3e-82a9-4e2b-b06d-355abfbf5c8f</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7977198148</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42182,3243817477</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>ed444744-0333-4bd9-828e-a9a2ac9fca09</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=275&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Документальный</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>ed444744-0333-4bd9-828e-a9a2ac9fca09</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,7984283218</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42243,9042129167</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>7f8d4c18-a6a4-4bfe-867f-4dd38a9bbea1</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=278&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Драма</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>7f8d4c18-a6a4-4bfe-867f-4dd38a9bbea1</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,80340125</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8042588889</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d053af0f-0929-483d-bf09-eff4accd09e3</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=331&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Игра</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>d053af0f-0929-483d-bf09-eff4accd09e3</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8040247222</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8042588889</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e26015aa-a302-464e-8e0c-73fc9d0bbdbe</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=319&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>История</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>e26015aa-a302-464e-8e0c-73fc9d0bbdbe</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8046012153</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42261,8669673958</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>9a0c586d-e873-4000-b293-49412d05ea7c</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=282&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Комедия</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>9a0c586d-e873-4000-b293-49412d05ea7c</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42261,8682163079</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8084392014</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>e847bab3-879f-4666-8f93-65233b4d0985</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=298&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Концерт</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>e847bab3-879f-4666-8f93-65233b4d0985</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8095269907</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8097984491</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c8248eaa-3a1c-4555-bbfd-0295cf1fd700</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=286&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Короткометражка</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>c8248eaa-3a1c-4555-bbfd-0295cf1fd700</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,810422338</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,810492581</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>4c051f60-320d-4a05-b62a-95d8fa9784b0</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=283&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Криминал</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>4c051f60-320d-4a05-b62a-95d8fa9784b0</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8135283449</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8136261806</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>8dda60cf-8803-4f48-9658-d95381d6a64a</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=296&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мелодрама</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>8dda60cf-8803-4f48-9658-d95381d6a64a</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8145252431</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8146187731</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>c235a50a-f51d-46b0-a973-598e9b233ad0</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=302&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Музыка</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>c235a50a-f51d-46b0-a973-598e9b233ad0</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,815244919</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8153160301</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>56b2011e-ec7c-417d-9897-951cfd02957f</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=291&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мультфильмы</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>56b2011e-ec7c-417d-9897-951cfd02957f</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8159469792</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8160173611</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>d7c58a2a-0543-4b1e-ab34-2130ad23a8af</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=311&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Мюзикл</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>d7c58a2a-0543-4b1e-ab34-2130ad23a8af</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8167418171</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,817185081</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>974c2ebe-91b3-463c-a1ec-5791e8dab8b8</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=304&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Новости</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>974c2ebe-91b3-463c-a1ec-5791e8dab8b8</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8177370023</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8178134375</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6efc6306-616d-4bc0-a1ed-6615ecebd38a</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=294&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Приключения</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>6efc6306-616d-4bc0-a1ed-6615ecebd38a</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8183569213</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42261,8675944329</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6b7ca9c1-f6c3-4da5-8a6f-993ffa235a0b</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=309&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Реальное ТВ</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>6b7ca9c1-f6c3-4da5-8a6f-993ffa235a0b</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8191386574</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42185,8415177083</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6245cff0-befa-44c7-b67a-5b9f339b4d18</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=297&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Семейный</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>6245cff0-befa-44c7-b67a-5b9f339b4d18</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8197535301</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8198416204</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>65342193-143d-4575-a24c-53ab356648a3</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=318&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Спорт</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>65342193-143d-4575-a24c-53ab356648a3</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8202522569</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8203032292</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>bd642bad-53a5-4ae5-91b5-3df44c78ebea</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=324&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ток-шоу</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>bd642bad-53a5-4ae5-91b5-3df44c78ebea</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8213258218</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8213863194</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>6e06a682-3690-433f-b9d9-52eee1f48769</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=280&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Триллер</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>6e06a682-3690-433f-b9d9-52eee1f48769</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,825048206</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42246,955058044</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>de546538-ad52-4de9-820a-a5c40e157e5e</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=289&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Ужасы</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>de546538-ad52-4de9-820a-a5c40e157e5e</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8258326968</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42193,6973124306</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>a53af94a-2949-4499-be44-f4b321bc87de</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=284&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фантастика</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>a53af94a-2949-4499-be44-f4b321bc87de</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8272954977</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42191,9415153009</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>261c6cc4-6552-405e-89c6-20c3ac4a7340</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=336&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фильм-Нуар</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>261c6cc4-6552-405e-89c6-20c3ac4a7340</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8286096991</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42182,8788921991</Value>
                </Property>
              </Properties>
            </Item>
            <Item>
              <ClassID>53</ClassID>
              <ItemID>b62e88d2-fd51-4176-909f-6ac69d9ef3a4</ItemID>
              <ItemPath>http://1ttv.org/film_selector.php?genre=301&amp;sort_type=date</ItemPath>
              <ParentID>28cbf1d9-383a-4903-bd43-ec8420e68634</ParentID>
              <Properties>
                <Property>
                  <ID>515</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>512</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>532</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>700</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>553</ID>
                  <Value>2</Value>
                </Property>
                <Property>
                  <ID>42</ID>
                  <Value>3</Value>
                </Property>
                <Property>
                  <ID>4</ID>
                  <Value>Фэнтези</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>522</ID>
                  <Value>0</Value>
                </Property>
                <Property>
                  <ID>245</ID>
                  <Value>b62e88d2-fd51-4176-909f-6ac69d9ef3a4</Value>
                </Property>
                <Property>
                  <ID>93</ID>
                  <Value>42181,8295659144</Value>
                </Property>
                <Property>
                  <ID>525</ID>
                  <Value>42181,8296374884</Value>
                </Property>
              </Properties>
            </Item>
          </ChildItems>
        </Item>
      </ChildItems>
      <HmsTranscodingConfig>
        <TranscoderList>
          <Transcoder>
            <Name>ACEPLAYER</Name>
            <Path>%Registry\SOFTWARE\AceStream\InstallDir%\player\ace_player.exe</Path>
            <HomePage>http://www.acestream.org</HomePage>
            <Download>http://www.acestream.org</Download>
          </Transcoder>
        </TranscoderList>
        <TranscodingProfileList>
          <Profile>
            <TranscoderName>ACEPLAYER</TranscoderName>
            <TranscodingCondition></TranscodingCondition>
            <TranscodingConditionSyntaxType>PascalScript</TranscodingConditionSyntaxType>
            <TranscodingComment></TranscodingComment>
            <TranscodingFolder>Транскодирование для TorrentStream, AceStream медиа-ресурсов</TranscodingFolder>
            <TranscodingMediaType>3</TranscodingMediaType>
            <TranscodingMimeType></TranscodingMimeType>
            <TranscodingMimeTypeScript>var
  i: Integer;
  sFileExt: string;
begin
  if mpFileType &lt;&gt; &apos;&apos; then begin
    if SameText(mpFileType, &apos;mpegts&apos;) then  
      sFileExt := &apos;ts&apos;    
    else if SameText(mpFileType, &apos;mpeg&apos;) then
      sFileExt := &apos;mpg&apos;      
    else if MatchText(mpFileType, [&apos;matroska&apos;, &apos;matroska,webm&apos;]) then
      sFileExt := &apos;mkv&apos;
    else if SameText(mpFileType, &apos;asf&apos;) then  
      sFileExt := &apos;wmv&apos;    
    else begin  
      i := Pos(&apos;,&apos;, mpFileType);    
      if i &gt; 0 then    
        sFileExt := Copy(mpFileType, 1, i - 1)      
      else              
        sFileExt := mpFileType      
    end;    
    MimeType := HmsGetMimeType(sFileExt)
  end                                   
end.</TranscodingMimeTypeScript>
            <TranscodingMimeTypeSyntaxType>PascalScript</TranscodingMimeTypeSyntaxType>
            <TranscodingMode>0</TranscodingMode>
            <TranscodingParams>const
  csVideoLanParams = &apos;--no-crashdump --play-and-exit -Idummy --language en --demuxdump-file="&lt;OUTPUT FILE&gt;" --access=p2p_access "%s" :demux=dump&apos;;
var
  sInputFileName, sMediaResourceLink: string;  
begin
  sInputFileName := &apos;&lt;INPUT FILE&gt;&apos;;
  if InputFileName = &apos;-&apos; then begin
    sMediaResourceLink := HmsGetItemProperty(mpiMediaResourceLink);
    if Pos(&apos;--demuxdump-file&apos;, sMediaResourceLink) &gt; 0 then begin
      if not HmsRegExMatch(&apos;--access=p2p_access "(.*?)"&apos;, sMediaResourceLink, sInputFileName) then 
        HmsRegExMatch(&apos;"(.*?\.torrent)"&apos;, sMediaResourceLink, sInputFileName)
    end    
  end;
  TranscodingParams := Format(csVideoLanParams, [sInputFileName])  
end.</TranscodingParams>
            <TranscodingParamsSyntaxType>PascalScript</TranscodingParamsSyntaxType>
            <TranscodingProfile>AceStream (Входной поток)</TranscodingProfile>
            <TranscodingProfileActive>-1</TranscodingProfileActive>
            <TranscodingProfilePriority>16</TranscodingProfilePriority>
            <TranscodingProfileUuid>9b658aac-e270-40ba-9114-0ca9d833c2a1</TranscodingProfileUuid>
          </Profile>
        </TranscodingProfileList>
      </HmsTranscodingConfig>
    </Item>
  </ChildItems>
</HmsMediaItem>
