diff --git a/accounts/admin.py b/accounts/admin.py index d267f0d1..9457de21 100644 --- a/accounts/admin.py +++ b/accounts/admin.py @@ -13,14 +13,20 @@ from django.utils.translation import ugettext as _ from models import User from forms import UserForm, UserCreationForm, ChangePasswordForm, EmailAnnouncementForm, UserFilterForm #custom views -from functions.admin_views import AdminView, AdminListView from django.views.generic import UpdateView +from functions.admin_views import AdminView, AdminListView, paginate_results class UserListView(AdminListView): template_name = 'admin/accounts/user_list.html' form_class = UserFilterForm model = User + def get_context_data(self, **kwargs): + context = super(UserListView, self).get_context_data(**kwargs) + qs = self.model.objects.all() + result = paginate_results(qs, page=self.request.GET.get('page')) + context['object_list'] = result + return context class EditUser(UpdateView): model = User diff --git a/accounts/models.py b/accounts/models.py index ce4e4b47..2c83a17b 100644 --- a/accounts/models.py +++ b/accounts/models.py @@ -144,6 +144,9 @@ class User(AbstractBaseUser, PermissionsMixin): class Meta: ordering=['-rating'] + def is_organiser(self): + return bool(self.organiser) + def get_full_name(self): """ Returns the first_name plus the last_name, with a space in between. diff --git a/core/admin_urls.py b/core/admin_urls.py index 81e844eb..bc8bb409 100644 --- a/core/admin_urls.py +++ b/core/admin_urls.py @@ -1,10 +1,10 @@ -from django.conf.urls import url, patterns -from views import NewPage, PageList, EditPage, DeletePage, PageDetailed - -urlpatterns = patterns('', - url(r'^new/$', NewPage.as_view(), name='new_page' ), - url(r'^all/$', PageList.as_view(), name = 'page_list'), - url(r'^edit/(?P.*)/$', EditPage.as_view(), name='edit_page'), - url(r'^delete/(?P.*)/$', DeletePage.as_view(), name='delete_page'), - url(r'^(?P.*)/$', PageDetailed.as_view(), name='page_view'), -) +from django.conf.urls import url, patterns +from views import NewPage, PageList, EditPage, DeletePage, PageDetailed + +urlpatterns = patterns('', + url(r'^new/$', NewPage.as_view(), name='new_page' ), + url(r'^all/$', PageList.as_view(), name = 'page_list'), + url(r'^edit/(?P.*)/$', EditPage.as_view(), name='edit_page'), + url(r'^delete/(?P.*)/$', DeletePage.as_view(), name='delete_page'), + url(r'^(?P.*)/$', PageDetailed.as_view(), name='page_view'), +) diff --git a/core/forms.py b/core/forms.py index 6244f97e..d00f080e 100644 --- a/core/forms.py +++ b/core/forms.py @@ -61,21 +61,12 @@ class PageForm(TranslatableModelForm): class Meta: model = Page - fields = ['url','title','h1','descriptions','keywords', 'body' ] + fields = ['url','title','h1','descriptions','keywords', 'body'] widgets = { 'body':CKEditorWidget, 'keywords':Textarea, 'descriptions':Textarea, } - def clean_url(self): - url = self.cleaned_data.get('url', None) - if url[0] == '/': - url = url[1:] - if url[-1] == '/': - url = url[:-1] - if ' ' in url: - url.replace(' ', '_') - return url diff --git a/core/models.py b/core/models.py index 268a7009..56d75875 100644 --- a/core/models.py +++ b/core/models.py @@ -4,7 +4,7 @@ from django.shortcuts import get_object_or_404 from django.db import models from exposition.models import Exposition -from settings.models import create_transl_fields +import copy from theme.models import Theme from country.models import Country from city.models import City @@ -114,24 +114,39 @@ class Page(TranslatableModel): def get_absolute_url(self): return reverse('page_view', args=[self.url]) + def __init__(self, *args, **kwargs): + super(Page, self).__init__(*args, **kwargs) + self.cache_fields = ['h1', 'body','title', 'description', 'keywords'] + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = True + def save(self, *args, **kwargs): super(Page,self).save(*args, **kwargs) - - all_field_names = list(self._translated_field_names) - clear_f_n = [] - for field_name in all_field_names: - if field_name not in ['master', 'master_id',u'id', 'language_code']: - clear_f_n.append(field_name) - field_items = {field_name:getattr(self, field_name) for field_name in clear_f_n} - - langs = [lan[0] for lan in settings.LANGUAGES] - for lang in langs: - if lang not in self.get_available_languages(): - self.translate(lang) - for field in clear_f_n: - setattr(self, field, field_items.get(field, '')) - obj = super(Page,self).save(*args, **kwargs) - return obj + self.initial_language = 'ru' + + new_values = {field: getattr(self, field) for field in self.cache_fields} + langs = [code for code, _ in settings.LANGUAGES] + if self.is_new: + for lang in langs: + if lang not in self.get_available_languages(): + self.translate(lang) + for key, value in new_values.items(): + setattr(self, key, value) + self.save_translations(self) + else: + translations = {obj.language_code:obj for obj in list(self.translations.all())} + for lang in langs: + if lang is not self.initial_language: + tr = translations[lang] + for key, value in new_values.items(): + #if u'%s' % getattr(self, key) is u'' or getattr(self, key) is u'%s' % self.var_cache[key]: + setattr(tr, key, value) + tr.save() + + self.lazy_translation_getter(self.initial_language) + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = False + return self def __unicode__(self): return self.url diff --git a/core/utils.py b/core/utils.py index ee429eee..b6416222 100644 --- a/core/utils.py +++ b/core/utils.py @@ -2,10 +2,6 @@ import xlwt import datetime - -from exposition.models import Exposition -from conference.models import Conference - from django.core.exceptions import ObjectDoesNotExist HEADER_STYLE = xlwt.easyxf('font: bold on') @@ -42,11 +38,13 @@ def get_column_cell(obj, name): return ', '.join(unicode(x).strip() for x in attr.all()) return attr + def queryset_to_workbook(queryset, columns, header_style=None, default_style=None, cell_style_map=None): workbook = xlwt.Workbook() report_date = datetime.date.today() - sheet_name = 'Export {0}'.format(report_date.strftime('%Y-%m-%d')) + sheet_name = u'My calendar {0}'.format(report_date.strftime('%Y-%m-%d')) sheet = workbook.add_sheet(sheet_name) + sheet.insert_bitmap('') if not header_style: header_style = HEADER_STYLE @@ -57,14 +55,13 @@ def queryset_to_workbook(queryset, columns, header_style=None, default_style=Non obj = queryset[0] - for y, column in enumerate(columns): - header_list=[u'Название события',u'Страна',u'Город',u'Место проведения', u'Дата начала', u'Дата окончания'] - - sheet.write(0, y, header_list[y], header_style) + for i, column in enumerate(columns): + header_list=[u'#', u'Название события',u'Даты',u'Краткое описание',u'Место проведения', u'Заметка', u'Ссылка на событие'] + sheet.write(0, i, header_list[i], header_style) for x, obj in enumerate(queryset, start=1): for y, column in enumerate(columns): - value = get_column_cell(obj, column) + value = getattr(obj, column) style = default_style for value_type, cell_style in cell_style_map: if isinstance(value, value_type): diff --git a/core/views.py b/core/views.py index 9e0af308..46172999 100644 --- a/core/views.py +++ b/core/views.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -from django.shortcuts import render_to_response from country.models import Country from city.models import City from place_exposition.models import PlaceExposition @@ -218,11 +217,14 @@ class PageList(ListView): template_name = 'page_admin_list.html' model = Page order = 'created' -from django import forms + + from django.http import HttpResponseRedirect + + class EditPage(UpdateView): model = Page - template_name = 'new_page.html' + template_name = 'admin/page/new_page.html' form_class = PageForm slug_url_kwarg = 'url' slug_field = 'url' @@ -233,7 +235,8 @@ class EditPage(UpdateView): return context def get_success_url(self): - return HttpResponseRedirect('/admin/page/all/') + return reverse_lazy('page_list') + class DeletePage(DeleteView): template_name = 'admin/page/page_confirm_delete.html' @@ -244,39 +247,47 @@ class DeletePage(DeleteView): class PageDetailed(DetailView): model = Page - template_name = 'client/base_catalog.html' + template_name = 'admin/page/page_template_view.html' slug_field = 'url' slug_url_kwarg = 'url' - - - # ------------ XLS Export ---------------- from django.http import HttpResponse +from django.utils.translation import get_language from .utils import queryset_to_workbook from exposition.models import Exposition from conference.models import Conference + def download_workbook(request): - data = [(36539, 'expo'),(36602, 'expo'), (3033, 'conf'), (3053, 'conf')] + lang = get_language() + data = [(36539, 'expo'),(36602, 'expo')]#, (3033, 'conf'), (3053, 'conf')] qs = [] for obj in data: if obj[1] == 'expo': - qs.append(Exposition.objects.get(id=obj[0])) - if obj[1] == 'conf': - qs.append(Conference.objects.get(id=obj[0])) + qs.append(Exposition.objects.language(lang).get(id=obj[0])) + + elif obj[1] == 'conf': + qs.append(Conference.objects.language(lang).get(id=obj[0])) + for i, obj in enumerate(qs, start=1): + setattr(obj, 'number', i) + setattr(obj, 'dates', u'%s - %s'%(obj.data_begin.strftime('%d %B %Y'),obj.data_end.strftime('%d %B %Y'))) + setattr(obj, 'full_place', u'%s, %s, %s' % (obj.country, obj.city, getattr(obj.place, 'name', ''))) + setattr(obj, 'link', u'expomap.ru%s'%obj.get_absolute_url()) + columns = ( + 'number', 'name', - 'country.name', - 'city.name', - 'place.name', - 'data_begin', - 'data_end') + 'dates', + 'main_title', + 'full_place', + 'participation_note', + 'link') workbook = queryset_to_workbook(qs, columns) response = HttpResponse(content_type='application/vnd.ms-excel') - response['Content-Disposition'] = 'attachment; filename="export.xls"' + response['Content-Disposition'] = 'attachment; filename="My calendar.xls"' workbook.save(response) return response diff --git a/expobanner/admin.py b/expobanner/admin.py index cfcaa599..0fe5c1bc 100644 --- a/expobanner/admin.py +++ b/expobanner/admin.py @@ -3,6 +3,7 @@ from django.views.generic import TemplateView, CreateView, ListView, UpdateView, from django.conf import settings from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 +from django.db.models import Sum from expobanner.models import URL, BannerGroup, Banner, Paid, MainPage, Top from expobanner.forms import UrlCreateForm, BannerCreateGroupForm, BannerCreateForm, BannerGroupUpdateForm,\ PaidCreateForm, PaidUpdateForm, TopCreateForm, BannerLinkCreateForm, MainCreateForm, MainUpdateForm, TopUpdateForm @@ -32,6 +33,7 @@ class CreateBanner(AbstractCreate): model = Banner form_class = BannerCreateForm + class CreateLink(AbstractCreate): model = Banner form_class = BannerLinkCreateForm @@ -67,6 +69,7 @@ class BannerList(AbstractList): qs = qs.filter(group__isnull=False) return qs + class LinkList(AbstractList): model = Banner verbose = u'Список ссылок' @@ -114,7 +117,10 @@ class PaidList(ListView): paginate_by = settings.ADMIN_PAGINATION def get_queryset(self): - return self.model.objects.language().filter(paid_new__isnull=False) + qs = self.model.objects.language().filter(paid_new__isnull=False).order_by('-paid_new__public') + if self.request.GET.get('onlypublic'): + qs = qs.filter(paid_new__public=True) + return qs class PaidCreate(CreateView): @@ -162,6 +168,18 @@ class PaidStat(DetailView): model = Paid template_name = 'admin/expobanner/paid_stat.html' + def get_context_data(self, **kwargs): + context = super(PaidStat, self).get_context_data(**kwargs) + obj = self.object + context['all'] = obj.paidstat_set.aggregate( + official=Sum('official_clicks'), + ticket=Sum('tickets_clicks'), + participation=Sum('participation_clicks'), + catalog=Sum('catalog_clicks') + ) + return context + + # ---------------------------------- class MainList(ListView): model = Exposition @@ -169,7 +187,10 @@ class MainList(ListView): paginate_by = settings.ADMIN_PAGINATION def get_queryset(self): - return self.model.objects.language().filter(main__isnull=False) + qs = self.model.objects.language().filter(main__isnull=False).order_by('-main__public') + if self.request.GET.get('onlypublic'): + qs = qs.filter(main__public=True) + return qs class MainCreate(CreateView): @@ -202,6 +223,7 @@ def main_turn(request, pk, status): return HttpResponseRedirect('/admin/expobanners/main/list/') + class MainStat(DetailView): model = MainPage template_name = 'admin/expobanner/main_stat.html' @@ -210,10 +232,16 @@ class MainStat(DetailView): context = super(MainStat, self).get_context_data(**kwargs) obj = self.object context['stats'] = obj.link.banner_stat.all() + context['all'] = obj.link.banner_stat.aggregate( + views=Sum('view'), + clicks=Sum('click'), + unique_clicks=Sum('unique_click'), + unique_views=Sum('unique_view') + ) return context # ------------------------------------ - +from datetime import date class TopList(ListView): model = Exposition @@ -221,7 +249,10 @@ class TopList(ListView): paginate_by = settings.ADMIN_PAGINATION def get_queryset(self): - return self.model.objects.language().filter(top__isnull=False) + qs = self.model.objects.language().filter(top__isnull=False).order_by('-top__fr') + if self.request.GET.get('onlypublic'): + qs = qs.filter(top__fr__lte=date.today(), top__to__gte=date.today()) + return qs class TopCreate(CreateView): @@ -241,4 +272,4 @@ class TopUpdate(UpdateView): context = super(TopUpdate, self).get_context_data(**kwargs) obj = self.object context['exposition'] = obj.get_event() - return context \ No newline at end of file + return context diff --git a/expobanner/forms.py b/expobanner/forms.py index 85f479ea..84d45965 100644 --- a/expobanner/forms.py +++ b/expobanner/forms.py @@ -267,4 +267,4 @@ class TopUpdateForm(forms.ModelForm): top.save() self.save_m2m() - return top + return top \ No newline at end of file diff --git a/expobanner/managers.py b/expobanner/managers.py index 51f988af..3c78cc31 100644 --- a/expobanner/managers.py +++ b/expobanner/managers.py @@ -1,79 +1,79 @@ -# -*- coding: utf-8 -* -from datetime import date -from random import choice, shuffle -from django.db import models -from django.db.models import Q -from django.core.cache import cache - - -class BiasedManager(models.Manager): - def by_time(self, **kwargs): - all = super(BiasedManager, self).get_query_set().filter(**kwargs) - result = [] - for i in all: - for j in range(i.often): - result.append(i) - return result - - def one(self, **kwargs): - return choice(self.by_time(**kwargs)) - - def by_often(self, **kwargs): - result = self.by_time(**kwargs) - shuffle(result) - return result - - def create_for_paid(self, expo, url, role): - try: - name = str(expo.name) - except UnicodeEncodeError, UnicodeDecodeError: - name = expo.url - - alt = u'%s_%s'%(name, role) - return self.create(alt=alt, url=url, paid=True) - -class BannerGroupCached(models.Manager): - def all(self): - key = 'banner_group_all' - result = cache.get(key) - if not result: - result = list(self.filter(public=True)) - cache.set(key, result, 90) - return result - - def group_banners(self): - key = 'banner_group_banners' - result = cache.get(key) - if not result: - groups = self.all() - today = date.today() - result = {} - for group in groups: - result[group.slug] = list(group.banners.prefetch_related('urls', 'theme', 'country')\ - .filter(public=True, fr__lte=today)\ - .filter(Q(to__gte=today) | Q(to__isnull=True))) - cache.set(key, result, 70) - - return result - - -class URLCached(models.Manager): - def all(self): - key = 'banner_url_all' - result = cache.get(key) - if not result: - result = list(self.filter(public=True)) - cache.set(key, result, 150) - return result - -class TopCached(models.Manager): - def all(self): - key = 'expo_b_top_all' - result = cache.get(key) - if not result: - today = date.today() - result = list(self.prefetch_related('theme', 'country', 'excluded_tags', 'excluded_cities'). - filter(fr__lte=today).filter(Q(to__gte=today) | Q(to__isnull=True))) - cache.set(key, result, 80) - +# -*- coding: utf-8 -* +from datetime import date +from random import choice, shuffle +from django.db import models +from django.db.models import Q +from django.core.cache import cache + + +class BiasedManager(models.Manager): + def by_time(self, **kwargs): + all = super(BiasedManager, self).get_query_set().filter(**kwargs) + result = [] + for i in all: + for j in range(i.often): + result.append(i) + return result + + def one(self, **kwargs): + return choice(self.by_time(**kwargs)) + + def by_often(self, **kwargs): + result = self.by_time(**kwargs) + shuffle(result) + return result + + def create_for_paid(self, expo, url, role): + try: + name = str(expo.name) + except UnicodeEncodeError, UnicodeDecodeError: + name = expo.url + + alt = u'%s_%s'%(name, role) + return self.create(alt=alt, url=url, paid=True) + +class BannerGroupCached(models.Manager): + def all(self): + key = 'banner_group_all' + result = cache.get(key) + if not result: + result = list(self.filter(public=True)) + cache.set(key, result, 90) + return result + + def group_banners(self): + key = 'banner_group_banners' + result = cache.get(key) + if not result: + groups = self.all() + today = date.today() + result = {} + for group in groups: + result[group.slug] = list(group.banners.prefetch_related('urls', 'theme', 'country')\ + .filter(public=True, fr__lte=today)\ + .filter(Q(to__gte=today) | Q(to__isnull=True))) + cache.set(key, result, 70) + + return result + + +class URLCached(models.Manager): + def all(self): + key = 'banner_url_all' + result = cache.get(key) + if not result: + result = list(self.filter(public=True)) + cache.set(key, result, 150) + return result + +class TopCached(models.Manager): + def all(self): + key = 'expo_b_top_all' + result = cache.get(key) + if not result: + today = date.today() + result = list(self.prefetch_related('theme', 'country', 'excluded_tags', 'excluded_cities'). + filter(fr__lte=today).filter(Q(to__gte=today) | Q(to__isnull=True))) + cache.set(key, result, 80) + return result \ No newline at end of file diff --git a/expobanner/models.py b/expobanner/models.py index 7091af0e..2208fc9a 100644 --- a/expobanner/models.py +++ b/expobanner/models.py @@ -1,323 +1,328 @@ -# -*- coding: utf-8 -*- -import random -import hashlib -from datetime import datetime, date -from django.db import models -from django.utils.translation import ugettext_lazy as _ -from django.conf import settings -from django.contrib.sites.models import Site -from django.db.models.signals import post_save -from .managers import BiasedManager, BannerGroupCached, URLCached, TopCached -from .mixins import StatMixin -from theme.models import Theme -from country.models import Country - - -class URL(models.Model): - title = models.CharField(verbose_name=u'Заголовок', max_length=256) - url = models.CharField(verbose_name=u'URL or URL RegEx', max_length=2048) - regex = models.BooleanField(verbose_name=u'RegEx', default=False) - sites = models.ManyToManyField(Site, related_name='site_urls', verbose_name=_('Sites'), null=True, blank=True) - - public = models.BooleanField(verbose_name=u'Активный', default=True) - created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) - updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) - - objects = models.Manager() - cached = URLCached() - - def __unicode__(self): - return self.title - - class Meta: - ordering = ['-created_at'] - verbose_name = _('URL') - verbose_name_plural = _('URLs') - - def get_admin_url(self): - return '/admin/expobanners/banners/url/%d/edit/'%self.id - - -class BannerGroup (models.Model): - name = models.CharField(verbose_name=u'Имя', max_length=255) - slug = models.SlugField(verbose_name=u'URL', unique=True) - width = models.PositiveSmallIntegerField(verbose_name=u'Ширина', default=0) - height = models.PositiveSmallIntegerField(verbose_name=u'Высота', default=0) - speed = models.PositiveSmallIntegerField(verbose_name=u'Скорость отображения', default=2000) - - public = models.BooleanField(verbose_name=u'Активная', default=True) - created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) - updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) - - objects = models.Manager() - cached = BannerGroupCached() - - def size(self): - return '%sx%s' % (self.width, self.height) - - def __unicode__(self): - return '%s - [%s x %s]' % (self.name, self.width, self.height) - - class Meta: - ordering = ['name'] - verbose_name = _('Banner Group') - verbose_name_plural = _('Banner Groups') - - def get_admin_url(self): - return '/admin/expobanners/banners/group/%d/edit/'%self.id - - -class Banner(models.Model, StatMixin): - objects = BiasedManager() - - title = models.CharField(verbose_name=u'Заголовок', max_length=255, blank=True) - alt = models.CharField(verbose_name=_('Alt'), max_length=255) - - text = models.TextField(verbose_name=u'Текст', blank=True, null=True) - img = models.FileField(verbose_name=u'Картинка', upload_to='expo_upload', blank=True, null=True) - url = models.CharField(verbose_name=u'URL', max_length=1024) - fr = models.DateField(default=date.today()) - to = models.DateField(blank=True, null=True) - - theme = models.ManyToManyField(Theme, blank=True, null=True, verbose_name=u'Тематика') - country = models.ManyToManyField(Country, blank=True, null=True, verbose_name=u'Страна') - - sort = models.PositiveSmallIntegerField(verbose_name=u'Сорт', default=500) - - group = models.ForeignKey(BannerGroup, related_name='banners', verbose_name=u'Место', null=True, blank=True) - often = models.PositiveSmallIntegerField( - verbose_name=_('Often'), - help_text=_('A ten will display 10 times more often that a one.'), - choices=[[i, i] for i in range(11)], - default=1 - ) - urls = models.ManyToManyField(URL, related_name='url_banners', verbose_name=_('URLs'), null=True, blank=True) - - html = models.BooleanField(verbose_name=_('HTML?'), default=False) - flash = models.BooleanField(verbose_name=_('Flash?'), default=False) - popup = models.BooleanField(verbose_name=_('Popup?'), default=False) - paid = models.BooleanField(verbose_name=_('Is Paid event link?'), default=False) - link = models.BooleanField(verbose_name=_('Is simple link?'), default=False) - # for detecting popups - cookie = models.CharField(max_length=30, blank=True, null=True, default=settings.DEFAULT_POPUP_COOKIE) - - public = models.BooleanField(verbose_name=u'Активный', default=True) - created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) - updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) - - stat_pswd = models.CharField(max_length=16) - - class Meta: - ordering = ['-public'] - - def get_admin_url(self): - return '/admin/expobanners/banners/banner/%d/edit/'%self.id - - - def key(slef): - if hasattr(settings, 'SECRET_KEY'): - key = str(datetime.now()) + settings.SECRET_KEY - else: - key = str(datetime.now()) - return hashlib.md5(key).hexdigest() - - def log(self, request, type): - log = { - 'type': type, - 'banner': self, - 'group': self.group, - 'ip': request.META.get('REMOTE_ADDR'), - 'user_agent': request.META.get('HTTP_USER_AGENT'), - 'page': request.META.get('HTTP_REFERER'), - } - - if request.user.is_authenticated(): - log['user'] = request.user - return Log.objects.create(**log) - - @models.permalink - def image(self): - return ('banner_view', (), {'banner_id': self.pk, 'key': self.key()}) - - def impressions(self): - return Log.objects.filter(banner=self.pk, type=0).count() - - def views(self): - return Log.objects.filter(banner=self.pk, type=1).count() - - def clicks(self): - return Log.objects.filter(banner=self.pk, type=2).count() - - def __unicode__(self): - return self.title or self.alt - - def get_absolute_url(self): - if self.url == '#': - return self.url - else: - @models.permalink - def get_absolute_url(self): - return ('banner_click', (), {'banner_id': self.pk, 'key': self.key()}) - return get_absolute_url(self) - - def get_click_link(self): - return '/expo-b/click/%d/'%self.id - - class Meta: - ordering = ['sort'] - verbose_name = _('Banner') - verbose_name_plural = _('Banners') - - -class Log(models.Model): - banner = models.ForeignKey(Banner, related_name='banner_logs') - group = models.ForeignKey(BannerGroup, related_name='group_logs', verbose_name=_('Group'), blank=True, null=True) - urls = models.ManyToManyField(URL, related_name='url_logs', verbose_name=_('URLs'), blank=True) - - user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True, blank=True, related_name='users', verbose_name=_('User')) - datetime = models.DateTimeField(verbose_name=_('Clicked At'), auto_now_add=True) - ip = models.IPAddressField(verbose_name=_('IP'), null=True, blank=True) - user_agent = models.CharField(verbose_name=_('User Agent'), max_length=1024, null=True, blank=True) - page = models.URLField(verbose_name=_('Page'), null=True, blank=True) - key = models.CharField(verbose_name=_('User Agent'), max_length=32, null=True, blank=True) - TYPE_CHOICES = ( - (0, 'impressions'), - (1, 'view'), - (2, 'click') - ) - - type = models.PositiveSmallIntegerField(verbose_name=_('Type'), max_length=1, default=0, choices=TYPE_CHOICES) - - def __unicode__(self): - return '%s - (%s)' % (self.banner, self.datetime) - - -class LogStat(models.Model): - banner = models.ForeignKey(Banner, related_name='banner_stat', verbose_name=_('Banner'), blank=True) - group = models.ForeignKey(BannerGroup, related_name='group_stat', verbose_name=_('Group'), blank=True, null=True) - urls = models.ManyToManyField(URL, related_name='url_bloks', verbose_name=_('URLs'), null=True, blank=True) - - date = models.DateField(verbose_name=_('Data')) - view = models.PositiveIntegerField(verbose_name=_('Views')) - click = models.PositiveIntegerField(verbose_name=_('Clicks')) - unique_click = models.PositiveIntegerField(verbose_name=_('Unique Views'), blank=True, null=True) - unique_view = models.PositiveIntegerField(verbose_name=_('Unique Clicks')) - - def __unicode__(self): - return '%s - (%s)' % (self.banner, self.date) - - -# ------------------ -class Paid(models.Model, StatMixin): - tickets = models.ForeignKey(Banner, related_name='paid_tickets') - participation = models.ForeignKey(Banner, related_name='paid_participation') - official = models.ForeignKey(Banner, related_name='paid_official') - catalog = models.ForeignKey(Banner, related_name='paid_catalog') - logo = models.ImageField(upload_to='expo-b/paid', blank=True) - organiser = models.CharField(max_length=100, blank=True) - public = models.BooleanField(default=True, verbose_name=u'Активная') - stat_pswd = models.CharField(max_length=16) - created = models.DateTimeField(auto_now_add=True) - modified = models.DateTimeField(auto_now=True) - - class Meta: - ordering = ['-public'] - - def get_event(self): - try: - return self.exposition_set.all()[0] - except IndexError: - return None - - -class PaidStat(models.Model): - paid = models.ForeignKey(Paid) - date = models.DateField(verbose_name=_('Date')) - page_views = models.PositiveIntegerField(default=0) - price_views = models.PositiveIntegerField(default=0) - catalog_views = models.PositiveIntegerField(default=0) - catalog_clicks = models.PositiveIntegerField(default=0) - tickets_clicks = models.PositiveIntegerField(default=0) - participation_clicks = models.PositiveIntegerField(default=0) - official_clicks = models.PositiveIntegerField(default=0) - - -class Top(models.Model, StatMixin): - link = models.ForeignKey(Banner) - catalog = models.CharField(max_length=16, verbose_name=u'Каталог для топа') - position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') - theme = models.ManyToManyField('theme.Theme', blank=True, null=True, verbose_name=u'Тематики') - excluded_tags = models.ManyToManyField('theme.Tag', blank=True, null=True, verbose_name=u'Исключить теги') - country = models.ManyToManyField('country.Country', blank=True, null=True, verbose_name=u'Страны') - excluded_cities = models.ManyToManyField('city.City', blank=True, null=True, verbose_name=u'Исключить города') - fr = models.DateField(default=date.today(), verbose_name=u'Начало') - to = models.DateField(blank=True, null=True, verbose_name=u'Конец') - stat_pswd = models.CharField(max_length=16) - - objects = models.Manager() - cached = TopCached() - - class Meta: - ordering = ['position'] - - def get_event(self): - try: - return self.exposition_set.all()[0] - except IndexError: - return None - -class TopStat(models.Model): - date = models.DateField() - theme = models.ForeignKey('theme.Theme', blank=True, null=True) - tag = models.ForeignKey('theme.Tag', blank=True, null=True) - country = models.ForeignKey('country.Country', blank=True, null=True) - city = models.ForeignKey('city.City', blank=True, null=True) - views = models.PositiveIntegerField(default=0) - clicks = models.PositiveIntegerField(default=0) - - -class MainPage(models.Model, StatMixin): - link = models.ForeignKey(Banner) - position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') - public = models.BooleanField(default=True, verbose_name=u'Активная') - stat_pswd = models.CharField(max_length=16) - created = models.DateTimeField(auto_now_add=True) - modified = models.DateTimeField(auto_now=True) - - class Meta: - ordering = ['-public'] - - def get_event(self): - try: - return self.exposition_set.all()[0] - except IndexError: - return None - - -def generatePassword(length=5): - """ - generate random password - """ - SYMBOLS = [',', '.', '?', '!', '-', '+', '1', '2', '3', '4', '5', '6', '7', '8', - '9', '0', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', - 'm', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', - 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', - 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '#'] - PASSWORD_LENGTH = length - newPassword = [] - for i in range(PASSWORD_LENGTH): - newPassword.append(SYMBOLS[random.randrange(0, len(SYMBOLS))]) - return ''.join(newPassword) - - -def generate_stat_pass(sender, **kwargs): - obj = kwargs['instance'] - if not obj.stat_pswd: - obj.stat_pswd = generatePassword() - obj.save() - - - -post_save.connect(generate_stat_pass, sender=Banner) -post_save.connect(generate_stat_pass, sender=Paid) -post_save.connect(generate_stat_pass, sender=Top) +# -*- coding: utf-8 -*- +import random +import hashlib +from datetime import datetime, date +from django.db import models +from django.utils.translation import ugettext_lazy as _ +from django.conf import settings +from django.contrib.sites.models import Site +from django.db.models.signals import post_save +from .managers import BiasedManager, BannerGroupCached, URLCached, TopCached +from .mixins import StatMixin +from theme.models import Theme +from country.models import Country + + +class URL(models.Model): + title = models.CharField(verbose_name=u'Заголовок', max_length=256) + url = models.CharField(verbose_name=u'URL or URL RegEx', max_length=2048) + regex = models.BooleanField(verbose_name=u'RegEx', default=False) + sites = models.ManyToManyField(Site, related_name='site_urls', verbose_name=_('Sites'), null=True, blank=True) + + public = models.BooleanField(verbose_name=u'Активный', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + + objects = models.Manager() + cached = URLCached() + + def __unicode__(self): + return self.title + + class Meta: + ordering = ['-created_at'] + verbose_name = _('URL') + verbose_name_plural = _('URLs') + + def get_admin_url(self): + return '/admin/expobanners/banners/url/%d/edit/'%self.id + + +class BannerGroup (models.Model): + name = models.CharField(verbose_name=u'Имя', max_length=255) + slug = models.SlugField(verbose_name=u'URL', unique=True) + width = models.PositiveSmallIntegerField(verbose_name=u'Ширина', default=0) + height = models.PositiveSmallIntegerField(verbose_name=u'Высота', default=0) + speed = models.PositiveSmallIntegerField(verbose_name=u'Скорость отображения', default=2000) + + public = models.BooleanField(verbose_name=u'Активная', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + + objects = models.Manager() + cached = BannerGroupCached() + + def size(self): + return '%sx%s' % (self.width, self.height) + + def __unicode__(self): + return '%s - [%s x %s]' % (self.name, self.width, self.height) + + class Meta: + ordering = ['name'] + verbose_name = _('Banner Group') + verbose_name_plural = _('Banner Groups') + + def get_admin_url(self): + return '/admin/expobanners/banners/group/%d/edit/'%self.id + + +class Banner(models.Model, StatMixin): + objects = BiasedManager() + + title = models.CharField(verbose_name=u'Заголовок', max_length=255, blank=True) + alt = models.CharField(verbose_name=_('Alt'), max_length=255) + + text = models.TextField(verbose_name=u'Текст', blank=True, null=True) + img = models.FileField(verbose_name=u'Картинка', upload_to='expo_upload', blank=True, null=True) + url = models.CharField(verbose_name=u'URL', max_length=1024) + fr = models.DateField(default=date.today()) + to = models.DateField(blank=True, null=True) + + theme = models.ManyToManyField(Theme, blank=True, null=True, verbose_name=u'Тематика') + country = models.ManyToManyField(Country, blank=True, null=True, verbose_name=u'Страна') + + sort = models.PositiveSmallIntegerField(verbose_name=u'Сорт', default=500) + + group = models.ForeignKey(BannerGroup, related_name='banners', verbose_name=u'Место', null=True, blank=True) + often = models.PositiveSmallIntegerField( + verbose_name=_('Often'), + help_text=_('A ten will display 10 times more often that a one.'), + choices=[[i, i] for i in range(11)], + default=1 + ) + urls = models.ManyToManyField(URL, related_name='url_banners', verbose_name=_('URLs'), null=True, blank=True) + + html = models.BooleanField(verbose_name=_('HTML?'), default=False) + flash = models.BooleanField(verbose_name=_('Flash?'), default=False) + popup = models.BooleanField(verbose_name=_('Popup?'), default=False) + paid = models.BooleanField(verbose_name=_('Is Paid event link?'), default=False) + link = models.BooleanField(verbose_name=_('Is simple link?'), default=False) + # for detecting popups + cookie = models.CharField(max_length=30, blank=True, null=True, default=settings.DEFAULT_POPUP_COOKIE) + + public = models.BooleanField(verbose_name=u'Активный', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + + stat_pswd = models.CharField(max_length=16) + + class Meta: + ordering = ['-public'] + + def get_admin_url(self): + return '/admin/expobanners/banners/banner/%d/edit/'%self.id + + def key(slef): + if hasattr(settings, 'SECRET_KEY'): + key = str(datetime.now()) + settings.SECRET_KEY + else: + key = str(datetime.now()) + return hashlib.md5(key).hexdigest() + + def log(self, request, type): + log = { + 'type': type, + 'banner': self, + 'group': self.group, + 'ip': request.META.get('REMOTE_ADDR'), + 'user_agent': request.META.get('HTTP_USER_AGENT'), + 'page': request.META.get('HTTP_REFERER'), + } + + if request.user.is_authenticated(): + log['user'] = request.user + return Log.objects.create(**log) + + @models.permalink + def image(self): + return ('banner_view', (), {'banner_id': self.pk, 'key': self.key()}) + + def impressions(self): + return Log.objects.filter(banner=self.pk, type=0).count() + + def views(self): + return Log.objects.filter(banner=self.pk, type=1).count() + + def clicks(self): + return Log.objects.filter(banner=self.pk, type=2).count() + + def __unicode__(self): + return self.title or self.alt + + def get_absolute_url(self): + if self.url == '#': + return self.url + else: + @models.permalink + def get_absolute_url(self): + return ('banner_click', (), {'banner_id': self.pk, 'key': self.key()}) + return get_absolute_url(self) + + def get_click_link(self): + return '/expo-b/click/%d/'%self.id + + class Meta: + ordering = ['sort'] + verbose_name = _('Banner') + verbose_name_plural = _('Banners') + + +class Log(models.Model): + banner = models.ForeignKey(Banner, related_name='banner_logs') + group = models.ForeignKey(BannerGroup, related_name='group_logs', verbose_name=_('Group'), blank=True, null=True) + urls = models.ManyToManyField(URL, related_name='url_logs', verbose_name=_('URLs'), blank=True) + + user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True, blank=True, related_name='users', verbose_name=_('User')) + datetime = models.DateTimeField(verbose_name=_('Clicked At'), auto_now_add=True) + ip = models.IPAddressField(verbose_name=_('IP'), null=True, blank=True) + user_agent = models.CharField(verbose_name=_('User Agent'), max_length=1024, null=True, blank=True) + page = models.URLField(verbose_name=_('Page'), null=True, blank=True) + key = models.CharField(verbose_name=_('User Agent'), max_length=32, null=True, blank=True) + TYPE_CHOICES = ( + (0, 'impressions'), + (1, 'view'), + (2, 'click') + ) + + type = models.PositiveSmallIntegerField(verbose_name=_('Type'), max_length=1, default=0, choices=TYPE_CHOICES) + + def __unicode__(self): + return '%s - (%s)' % (self.banner, self.datetime) + + +class LogStat(models.Model): + banner = models.ForeignKey(Banner, related_name='banner_stat', verbose_name=_('Banner'), blank=True) + group = models.ForeignKey(BannerGroup, related_name='group_stat', verbose_name=_('Group'), blank=True, null=True) + urls = models.ManyToManyField(URL, related_name='url_bloks', verbose_name=_('URLs'), null=True, blank=True) + + date = models.DateField(verbose_name=_('Data')) + view = models.PositiveIntegerField(verbose_name=_('Views')) + click = models.PositiveIntegerField(verbose_name=_('Clicks')) + unique_click = models.PositiveIntegerField(verbose_name=_('Unique Views'), blank=True, null=True) + unique_view = models.PositiveIntegerField(verbose_name=_('Unique Clicks')) + + def __unicode__(self): + return '%s - (%s)' % (self.banner, self.date) + + class Meta: + ordering = ['-date'] + + +# ------------------ +class Paid(models.Model, StatMixin): + tickets = models.ForeignKey(Banner, related_name='paid_tickets') + participation = models.ForeignKey(Banner, related_name='paid_participation') + official = models.ForeignKey(Banner, related_name='paid_official') + catalog = models.ForeignKey(Banner, related_name='paid_catalog') + logo = models.ImageField(upload_to='expo-b/paid', blank=True) + organiser = models.CharField(max_length=100, blank=True) + public = models.BooleanField(default=True, verbose_name=u'Активная') + stat_pswd = models.CharField(max_length=16) + created = models.DateTimeField(auto_now_add=True) + modified = models.DateTimeField(auto_now=True) + + class Meta: + ordering = ['-public'] + + def get_event(self): + try: + return self.exposition_set.all()[0] + except IndexError: + return None + + +class PaidStat(models.Model): + paid = models.ForeignKey(Paid) + date = models.DateField(verbose_name=_('Date')) + page_views = models.PositiveIntegerField(default=0) + price_views = models.PositiveIntegerField(default=0) + catalog_views = models.PositiveIntegerField(default=0) + catalog_clicks = models.PositiveIntegerField(default=0) + tickets_clicks = models.PositiveIntegerField(default=0) + participation_clicks = models.PositiveIntegerField(default=0) + official_clicks = models.PositiveIntegerField(default=0) + + class Meta: + ordering = ['-date'] + + +class Top(models.Model, StatMixin): + link = models.ForeignKey(Banner) + catalog = models.CharField(max_length=16, verbose_name=u'Каталог для топа') + position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') + theme = models.ManyToManyField('theme.Theme', blank=True, null=True, verbose_name=u'Тематики') + excluded_tags = models.ManyToManyField('theme.Tag', blank=True, null=True, verbose_name=u'Исключить теги') + country = models.ManyToManyField('country.Country', blank=True, null=True, verbose_name=u'Страны') + excluded_cities = models.ManyToManyField('city.City', blank=True, null=True, verbose_name=u'Исключить города') + fr = models.DateField(default=date.today(), verbose_name=u'Начало') + to = models.DateField(blank=True, null=True, verbose_name=u'Конец') + stat_pswd = models.CharField(max_length=16) + + objects = models.Manager() + cached = TopCached() + + class Meta: + ordering = ['position'] + + def get_event(self): + try: + return self.exposition_set.all()[0] + except IndexError: + return None + + +class TopStat(models.Model): + date = models.DateField() + theme = models.ForeignKey('theme.Theme', blank=True, null=True) + tag = models.ForeignKey('theme.Tag', blank=True, null=True) + country = models.ForeignKey('country.Country', blank=True, null=True) + city = models.ForeignKey('city.City', blank=True, null=True) + views = models.PositiveIntegerField(default=0) + clicks = models.PositiveIntegerField(default=0) + + +class MainPage(models.Model, StatMixin): + link = models.ForeignKey(Banner) + position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') + public = models.BooleanField(default=True, verbose_name=u'Активная') + stat_pswd = models.CharField(max_length=16) + created = models.DateTimeField(auto_now_add=True) + modified = models.DateTimeField(auto_now=True) + + class Meta: + ordering = ['-public'] + + def get_event(self): + try: + return self.exposition_set.all()[0] + except IndexError: + return None + + +def generatePassword(length=5): + """ + generate random password + """ + SYMBOLS = [',', '.', '?', '!', '-', '+', '1', '2', '3', '4', '5', '6', '7', '8', + '9', '0', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', + 'm', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', + 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', + 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '#'] + PASSWORD_LENGTH = length + newPassword = [] + for i in range(PASSWORD_LENGTH): + newPassword.append(SYMBOLS[random.randrange(0, len(SYMBOLS))]) + return ''.join(newPassword) + + +def generate_stat_pass(sender, **kwargs): + obj = kwargs['instance'] + if not obj.stat_pswd: + obj.stat_pswd = generatePassword() + obj.save() + + +post_save.connect(generate_stat_pass, sender=Banner) +post_save.connect(generate_stat_pass, sender=Paid) +post_save.connect(generate_stat_pass, sender=Top) diff --git a/expobanner/templates/slider.html b/expobanner/templates/slider.html index fcd6bd12..e2dd73ac 100644 --- a/expobanner/templates/slider.html +++ b/expobanner/templates/slider.html @@ -1,74 +1,74 @@ -{% load thumbnail %} - -{% if banners %} - -
- - -
    - {% for banner in banners %} -
  • - {{ forloop.counter }} -
  • - {% endfor %} -
- - 〈   -   〉 - -
- - - - - +{% load thumbnail %} + +{% if banners %} + +
+ + +
    + {% for banner in banners %} +
  • + {{ forloop.counter }} +
  • + {% endfor %} +
+ + 〈   +   〉 + +
+ + + + + {% endif %} \ No newline at end of file diff --git a/expobanner/templatetags/banner.py b/expobanner/templatetags/banner.py index c1491a74..f7257f1c 100644 --- a/expobanner/templatetags/banner.py +++ b/expobanner/templatetags/banner.py @@ -1,74 +1,74 @@ -from ..models import Banner -from ..models import BannerGroup -from ..models import URL - -from django import template - -# For render tag -from django.template import Context -from django.template import Template - -import re - -register = template.Library() - - -@register.simple_tag(takes_context=True) -def banner_group(context, group, tpl='group.html'): - try: - page_url = context['request'].path_info - site = context['request'].site - group = BannerGroup.objects.get(slug=group) - good_urls = [] - for url in URL.objects.filter(public=True, sites__in=[site]): - if url.regex: - url_re = re.compile(url.url) - if url_re.findall(page_url): - good_urls.append(url) - elif page_url == url.url: - good_urls.append(url) - banners = Banner.objects.filter(public=True, group=group, urls__in=good_urls) - except: - banners = False - group = False - if(banners and group): - context['banners'] = banners - context['group'] = group - - t = template.loader.get_template(tpl) - return t.render(template.Context(context)) - - -@register.simple_tag(takes_context=True) -def banner_one(context, banner_id, tpl='banner.html'): - try: - page_url = context['request'].path_info - site = context['request'].site - good_urls = [] - for url in URL.objects.filter(public=True, sites__in=[site]): - if url.regex: - url_re = re.compile(url.url) - if url_re.findall(page_url): - good_urls.append(url) - elif page_url == url.url: - good_urls.append(url) - - banner = Banner.objects.get(id=banner_id, public=True, urls__in=good_urls) - except: - banner = False - - context['banner'] = banner - - t = template.loader.get_template(tpl) - return t.render(template.Context(context)) - - -# block render -@register.simple_tag(takes_context=True) -def render(context, content): - try: - tpl = Template(content) - content = Context(context) - return tpl.render(content) - except: - return 'Render Error' +from ..models import Banner +from ..models import BannerGroup +from ..models import URL + +from django import template + +# For render tag +from django.template import Context +from django.template import Template + +import re + +register = template.Library() + + +@register.simple_tag(takes_context=True) +def banner_group(context, group, tpl='group.html'): + try: + page_url = context['request'].path_info + site = context['request'].site + group = BannerGroup.objects.get(slug=group) + good_urls = [] + for url in URL.objects.filter(public=True, sites__in=[site]): + if url.regex: + url_re = re.compile(url.url) + if url_re.findall(page_url): + good_urls.append(url) + elif page_url == url.url: + good_urls.append(url) + banners = Banner.objects.filter(public=True, group=group, urls__in=good_urls) + except: + banners = False + group = False + if(banners and group): + context['banners'] = banners + context['group'] = group + + t = template.loader.get_template(tpl) + return t.render(template.Context(context)) + + +@register.simple_tag(takes_context=True) +def banner_one(context, banner_id, tpl='banner.html'): + try: + page_url = context['request'].path_info + site = context['request'].site + good_urls = [] + for url in URL.objects.filter(public=True, sites__in=[site]): + if url.regex: + url_re = re.compile(url.url) + if url_re.findall(page_url): + good_urls.append(url) + elif page_url == url.url: + good_urls.append(url) + + banner = Banner.objects.get(id=banner_id, public=True, urls__in=good_urls) + except: + banner = False + + context['banner'] = banner + + t = template.loader.get_template(tpl) + return t.render(template.Context(context)) + + +# block render +@register.simple_tag(takes_context=True) +def render(context, content): + try: + tpl = Template(content) + content = Context(context) + return tpl.render(content) + except: + return 'Render Error' diff --git a/expobanner/urls.py b/expobanner/urls.py index 189b2023..65e3a854 100644 --- a/expobanner/urls.py +++ b/expobanner/urls.py @@ -1,13 +1,13 @@ -from django.conf.urls import url -from expobanner.stat_views import * -from . import views - -urlpatterns = [ - url(r'^click/(?P\d{1,4})/$', views.click, name='banner_click'), - #url(r'^view/(?P\d+)/$', views.view, name='banner_view'), - # - url(r'^get-banners/$', views.get_banners), - url(r'^get-tops/$', views.get_top), - url(r'^banner/(?P\d+)/stat/$', BannerStat.as_view(), name='banner_stat_client'), - url(r'^paid/(?P\d+)/stat/$', PaidStat.as_view(), name='paid_stat_client'), -] +from django.conf.urls import url +from expobanner.stat_views import * +from . import views + +urlpatterns = [ + url(r'^click/(?P\d{1,4})/$', views.click, name='banner_click'), + #url(r'^view/(?P\d+)/$', views.view, name='banner_view'), + # + url(r'^get-banners/$', views.get_banners), + url(r'^get-tops/$', views.get_top), + url(r'^banner/(?P\d+)/stat/$', BannerStat.as_view(), name='banner_stat_client'), + url(r'^paid/(?P\d+)/stat/$', PaidStat.as_view(), name='paid_stat_client'), +] diff --git a/expobanner/views.py b/expobanner/views.py index 0c5a0438..3d6df21c 100644 --- a/expobanner/views.py +++ b/expobanner/views.py @@ -1,97 +1,97 @@ -# -*- coding: utf-8 -*- -import json -import re -from django.http import HttpResponse -from django.shortcuts import redirect, get_object_or_404 -from django.shortcuts import render_to_response -from django.template import RequestContext -from .models import Banner, BannerGroup, URL, Top -from expobanner.utils import get_banner_by_params, get_client_ip, get_top_events, get_referer_view, set_cookie - - -def click(request, banner_id): - banner = get_object_or_404(Banner, pk=banner_id) - banner.log(request, 2) - return redirect(banner.url) - - -def view(request, banner_id): - banner = get_object_or_404(Banner, pk=banner_id) - banner.log(request, 1) - return redirect(banner.img.url) - -def get_banners(request): - url = get_referer_view(request, default='/') - # get urls by current url - urls = URL.cached.all() - good_urls = [] - for u in urls: - if u.regex: - url_re = re.compile(u.url) - if url_re.findall(url): - good_urls.append(u) - elif url == u.url: - good_urls.append(u) - # fill parameters dict - params = {'theme': request.GET.getlist('theme', []), - 'tag': request.GET.get('tag'), - 'country': request.GET.get('country'), - 'city': request.GET.get('city'), - 'ip': get_client_ip(request)} - - group_banners = BannerGroup.cached.group_banners() - result = [] - cookie = None - # get banners for all groups - places = request.GET.getlist('places', []) - - for group, banners in group_banners.iteritems(): - if group not in places: - # on this page there is no such group - continue - banner = get_banner_by_params(banners, good_urls, params, request) - if banner: - if banner.html: - text = banner.text - img = '' - alt = '' - is_img = False - else: - text = '' - try: - img = banner.img.url - except ValueError: - continue - alt = banner.alt - is_img = True - result.append({'id': group, - 'url': banner.get_click_link(), - 'is_html': banner.html, - 'is_flash': banner.flash, - 'is_img': is_img, - 'is_popup': banner.popup, - 'img': img, - 'alt': alt, - 'text': text - }) - if banner.popup: - cookie = banner.cookie - # add view log - banner.log(request, 1) - response = HttpResponse(json.dumps(result, indent=4), content_type='application/json') - if cookie: - response = set_cookie(response, cookie, '1') - - return response - -def get_top(request): - params = {'theme': request.GET.getlist('theme', []), - 'tag': request.GET.get('tag'), - 'country': request.GET.get('country'), - 'city': request.GET.get('city'), - 'catalog': request.GET.get('catalog')} - - tops = Top.cached.all() - events = get_top_events(tops, params, request) - context = {'objects': events} +# -*- coding: utf-8 -*- +import json +import re +from django.http import HttpResponse +from django.shortcuts import redirect, get_object_or_404 +from django.shortcuts import render_to_response +from django.template import RequestContext +from .models import Banner, BannerGroup, URL, Top +from expobanner.utils import get_banner_by_params, get_client_ip, get_top_events, get_referer_view, set_cookie + + +def click(request, banner_id): + banner = get_object_or_404(Banner, pk=banner_id) + banner.log(request, 2) + return redirect(banner.url) + + +def view(request, banner_id): + banner = get_object_or_404(Banner, pk=banner_id) + banner.log(request, 1) + return redirect(banner.img.url) + +def get_banners(request): + url = get_referer_view(request, default='/') + # get urls by current url + urls = URL.cached.all() + good_urls = [] + for u in urls: + if u.regex: + url_re = re.compile(u.url) + if url_re.findall(url): + good_urls.append(u) + elif url == u.url: + good_urls.append(u) + # fill parameters dict + params = {'theme': request.GET.getlist('theme', []), + 'tag': request.GET.get('tag'), + 'country': request.GET.get('country'), + 'city': request.GET.get('city'), + 'ip': get_client_ip(request)} + + group_banners = BannerGroup.cached.group_banners() + result = [] + cookie = None + # get banners for all groups + places = request.GET.getlist('places', []) + + for group, banners in group_banners.iteritems(): + if group not in places: + # on this page there is no such group + continue + banner = get_banner_by_params(banners, good_urls, params, request) + if banner: + if banner.html: + text = banner.text + img = '' + alt = '' + is_img = False + else: + text = '' + try: + img = banner.img.url + except ValueError: + continue + alt = banner.alt + is_img = True + result.append({'id': group, + 'url': banner.get_click_link(), + 'is_html': banner.html, + 'is_flash': banner.flash, + 'is_img': is_img, + 'is_popup': banner.popup, + 'img': img, + 'alt': alt, + 'text': text + }) + if banner.popup: + cookie = banner.cookie + # add view log + banner.log(request, 1) + response = HttpResponse(json.dumps(result, indent=4), content_type='application/json') + if cookie: + response = set_cookie(response, cookie, '1') + + return response + +def get_top(request): + params = {'theme': request.GET.getlist('theme', []), + 'tag': request.GET.get('tag'), + 'country': request.GET.get('country'), + 'city': request.GET.get('city'), + 'catalog': request.GET.get('catalog')} + + tops = Top.cached.all() + events = get_top_events(tops, params, request) + context = {'objects': events} return render_to_response('client/includes/exposition/expo_top.html', context, context_instance=RequestContext(request)) \ No newline at end of file diff --git a/exposition/models.py b/exposition/models.py index fbae6343..8a38e1a9 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -59,6 +59,8 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): data_end = models.DateField(verbose_name='Дата окончания') services = BitField(flags=flags) # relations + creator = models.ForeignKey('accounts.User', verbose_name=u'Создатель', on_delete=models.SET_NULL, + related_name='exposition_creator', blank=True, null=True) country = models.ForeignKey('country.Country', verbose_name='Страна', on_delete=models.PROTECT, related_name='exposition_country') city = models.ForeignKey('city.City', verbose_name='Город', on_delete=models.PROTECT, @@ -164,9 +166,6 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): enable = ClientManager() imports = ExpoImportManager() - - - def __unicode__(self): return self.lazy_translation_getter('name', unicode(self.pk)) diff --git a/functions/admin_views.py b/functions/admin_views.py index 0fb38183..d20b361d 100644 --- a/functions/admin_views.py +++ b/functions/admin_views.py @@ -90,6 +90,7 @@ def paginate_results(qs, page=None): return result +from hvad.models import TranslatableModel class AdminListView(FormView): def get_form(self, form_class): @@ -126,7 +127,10 @@ class AdminListView(FormView): def get_context_data(self, **kwargs): context = super(AdminListView, self).get_context_data(**kwargs) - qs = self.model.objects.language().all().order_by('name') + if issubclass(self.model, TranslatableModel): + qs = self.model.objects.language('all').all().order_by('name') + else: + qs = self.model.objects.all().order_by('name') result = paginate_results(qs, page=self.request.GET.get('page')) context['object_list'] = result return context diff --git a/logs/django_request.log b/logs/django_request.log new file mode 100644 index 00000000..e69de29b diff --git a/logs/mylog.log b/logs/mylog.log new file mode 100644 index 00000000..5dfa1096 --- /dev/null +++ b/logs/mylog.log @@ -0,0 +1,16 @@ +2015-07-28 12:23:39,172 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,175 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,200 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 12:23:39,201 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,232 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,233 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,247 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,248 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,284 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,285 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,304 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,305 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,460 [DEBUG] root: Using default logger +2015-07-28 12:23:39,460 [DEBUG] root: Using default logger +2015-07-28 12:24:17,361 [DEBUG] django.db.backends: (0.001) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`email` = 'vaniakov95@gmail.com' ; args=('vaniakov95@gmail.com',) +2015-07-28 12:24:25,526 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`email` = 'vaniakov95@gmail.com' ; args=('vaniakov95@gmail.com',) diff --git a/logs/mylog.log.1 b/logs/mylog.log.1 new file mode 100644 index 00000000..09851959 --- /dev/null +++ b/logs/mylog.log.1 @@ -0,0 +1,7056 @@ +2015-07-28 11:11:44,907 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,910 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:44,936 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,937 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:44,957 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,958 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,019 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:11:45,020 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,094 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:11:45,096 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,106 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:45,107 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,168 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:45,175 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:45,177 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:45,180 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:45,182 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:45,184 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:45,187 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:45,189 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:45,191 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:45,193 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:45,196 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:45,198 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:45,200 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:45,203 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:45,205 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:45,207 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:45,210 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:45,212 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:45,214 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:45,216 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:45,219 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:45,221 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:45,223 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:45,226 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:45,228 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:45,230 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:45,233 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:45,235 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:45,237 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:45,240 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:45,242 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:45,244 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:45,246 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:45,249 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:45,251 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:45,253 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:45,256 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:45,258 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:45,260 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:45,262 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:45,265 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:45,267 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:45,269 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:45,272 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:45,274 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:45,276 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:45,279 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:45,281 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:45,283 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:45,286 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:45,288 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:45,290 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:45,292 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:45,295 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:45,297 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:45,300 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:45,302 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:45,304 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:45,306 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:45,309 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:45,311 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:45,313 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:45,317 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:45,323 [DEBUG] django.db.backends: (0.000) SELECT DISTINCT `exposition_exposition`.`country_id` FROM `exposition_exposition`; args=() +2015-07-28 11:11:45,342 [DEBUG] django.db.backends: (0.014) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country_translation` LEFT OUTER JOIN `country_country` ON (`country_country_translation`.`master_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` T3 ON (`country_country`.`id` = T3.`master_id`) WHERE (`country_country_translation`.`master_id` IN (2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 25, 27, 31, 33, 35, 38, 39, 40, 41, 42, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 60, 62, 64, 66, 72, 73, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 96, 97, 99, 101, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 115, 117, 118, 119, 120, 121, 129, 130, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 148, 150, 152, 154, 155, 157, 158, 159, 160, 163, 164, 165, 166, 169, 172, 177, 179, 181, 184, 186, 187, 189, 191, 194, 198, 199, 201, 204, 205, 206, 207) AND `country_country_translation`.`language_code` = 'ru' ) ORDER BY T3.`name` ASC; args=(2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 25, 27, 31, 33, 35, 38, 39, 40, 41, 42, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 60, 62, 64, 66, 72, 73, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 96, 97, 99, 101, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 115, 117, 118, 119, 120, 121, 129, 130, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 148, 150, 152, 154, 155, 157, 158, 159, 160, 163, 164, 165, 166, 169, 172, 177, 179, 181, 184, 186, 187, 189, 191, 194, 198, 199, 201, 204, 205, 206, 207, 'ru') +2015-07-28 11:11:45,424 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `exposition_exposition`.`city_id` FROM `exposition_exposition`; args=() +2015-07-28 11:11:45,536 [DEBUG] django.db.backends: (0.099) SELECT `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified` FROM `city_city_translation` LEFT OUTER JOIN `city_city` ON (`city_city_translation`.`master_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` T3 ON (`city_city`.`id` = T3.`master_id`) WHERE (`city_city_translation`.`master_id` IN (-3730078, -3714993, -3714825, -3712125, -3414440, -3366242, -3212216, -3178767, -3160026, -3148348, -3106433, -3103581, -3102179, -3096108, -3091069, -3043275, -3042207, -3041912, -3040171, -3039267, -3038516, -3035173, -3034952, -3034701, -3034353, -3033871, -3033722, -3033718, -3029851, -3025025, -3024639, -3024309, -3024007, -3023495, -3023028, -3019679, -3019601, -3019132, -3015114, -3014703, -3013492, -3011273, -3006514, -3006140, -2996563, -2996523, -2996338, -2995930, -2994531, -2993218, -2990203, -2989168, -2981973, -2981545, -2980155, -2979687, -2974927, -2974462, -2972003, -2971968, -2970528, -2970141, -2969511, -2968530, -2967687, -2966930, -2966853, -2966244, -2964223, -2963575, -2962281, -2961506, -2960561, -2958321, -2950121, -2943527, -2941648, -2941280, -2936665, -2936262, -2934420, -2928684, -2928280, -2924570, -2924116, -2923678, -2923066, -2919283, -2918852, -2917908, -2916144, -2911004, -2899145, -2897205, -2896749, -2896432, -2886873, -2886746, -2883930, -2882404, -2880021, -2879191, -2877435, -2873843, -2866283, -2767043, -2764584, -2762812, -2753453, -2745636, -2744199, -2742107, -2739166, -2738616, -2737683, -2706092, -2705195, -2698521, -2679652, -2651804, -2648877, -2637882, -2625737, -2625660, -2624430, -2620663, -2615647, -2612321, -2611829, -2608164, -2607615, -2605646, -2605287, -2604911, -2604469, -2603961, -2603267, -2602512, -2602369, -2601889, -2601422, -2601144, -2600941, -2600535, -2600279, -2598194, -2597039, -2595943, -2595805, -2595386, -2594262, -2593403, -2593386, -2593226, -2592344, -2591777, -2590919, -2590498, -2589989, -2587757, -2579372, -2554935, -2554859, -2554817, -2554447, -2554000, -2553210, -2552994, -2552969, -2552809, -2552548, -2552151, -2552078, -2551757, -2551753, -2551451, -2551274, -2551235, -2551183, -2524279, -2503264, -2492129, -2482986, -2437894, -2424066, -2421883, -2404760, -2403010, -2402530, -2366485, -2353539, -2343962, -2342388, -2334555, -2334218, -2334069, -2331392, -2325645, -2276223, -2266494, -2258072, -2214877, -2173088, -2170180, -2167973, -2160205, -2159655, -2159606, -2156821, -2154520, -2154382, -2152943, -2152921, -2152403, -2152218, -2149006, -2147365, -2145932, -2145615, -2145280, -2145032, -2144863, -2144807, -2144141, -2144027, -2143610, -2140640, -2140567, -2140479, -2140452, -2112243, -2111972, -2111367, -2108361, -2106102, -2103041, -2102835, -2098033, -2097803, -2097701, -2093654, -2092770, -2092511, -2092174, -2090174, -2089356, -2088270, -2067935, -1997013, -1995515, -1995499, -1995338, -1992480, -1989985, -1982354, -1981445, -1971112, -1965564, -1964016, -1963947, -1959925, -1958757, -1956109, -1955925, -1955538, -1953257, -1951346, -1946324, -1941830, -1938815, -1935855, -1931786, -1931562, -1931546, -1930776, -1930588, -1929528, -1928564, -1925268, -1925258, -1924917, -1924465, -1922199, -1920233, -1919813, -1919548, -1912283, -1908634, -1908524, -1907161, -1905938, -1905584, -1903802, -1901835, -1900813, -1900774, -1900349, -1899743, -1898541, -1891486, -1887737, -1887191, -1883308, -1879835, -1876794, -1876356, -1871728, -1870735, -1865133, -1865057, -1862713, -1854320, -1853327, -1852370, -1849281, -1849253, -1847131, -1845975, -1843341, -1842944, -1841161, -1839098, -1839089, -1835238, -1832757, -1829320, -1829149, -1823084, -1822614, -1822294, -1821461, -1817680, -1810561, -1809855, -1804271, -1803994, -1800018, -1799639, -1794220, -1791959, -1790622, -1789153, -1788826, -1785903, -1785461, -1785434, -1783292, -1772098, -1771821, -1771505, -1771148, -1767857, -1766996, -1766950, -1762397, -1761951, -1761619, -1761123, -1760373, -1757722, -1756500, -1752234, -1751596, -1749194, -1747422, -1746443, -1743231, -1743182, -1743172, -1743065, -1742412, -1740635, -1736191, -1708147, -1704008, -1698603, -1690669, -1690444, -1690063, -1684228, -1679595, -1671447, -1669612, -1658079, -1655011, -1605526, -1603135, -1594675, -1586844, -1569058, -1563952, -1561728, -1555188, -1510346, -1508289, -1506909, -1504189, -1502950, -1502554, -1501986, -1476743, -1476233, -1476098, -1474712, -1474436, -1473937, -1473290, -1473278, -1473166, -1473153, -1471697, -1469710, -1468251, -1466824, -1464183, -1462807, -1462490, -1461464, -1461340, -1460939, -1460750, -1458949, -1457525, -1457494, -1456928, -1456813, -1456116, -1455068, -1454990, -1454460, -1454215, -1453260, -1452485, -1451964, -1451260, -1450921, -1450618, -1449947, -1449506, -1448468, -1447831, -1447117, -1447079, -1446426, -1442302, -1441792, -1441598, -1439527, -1438621, -1438604, -1432734, -1430647, -1426096, -1425294, -1424668, -1424354, -1423981, -1423684, -1421049, -1420906, -1420711, -1420293, -1419880, -1419454, -1418879, -1417924, -1416533, -1416177, -1416098, -1415036, -1413751, -1412526, -1412490, -1412198, -1411930, -1411193, -1409631, -1408925, -1408707, -1408524, -1408370, -1407705, -1407646, -1407447, -1407029, -1406959, -1406943, -1406939, -1406659, -1389822, -1388513, -1373945, -1368052, -1364995, -1353149, -1273769, -1273448, -1272393, -1240261, -1224926, -1217214, -1204094, -1187190, -1161664, -1156174, -1153951, -1151501, -1151195, -1148082, -1133206, -1113265, -1109108, -1064708, -1060168, -1059331, -1058303, -1057311, -1055659, -1054041, -1051195, -1049092, -1045268, -1044367, -1043968, -1041356, -1041320, -1038078, -1037865, -1037001, -1034272, -1033783, -1022136, -1013034, -979186, -970362, -955658, -938457, -932573, -927505, -926345, -910015, -904020, -901202, -897490, -878181, -872376, -851960, -850553, -844468, -843247, -840999, -840694, -838489, -837298, -829252, -826292, -814876, -801546, -789552, -787987, -785169, -784833, -782831, -782371, -782066, -781545, -781147, -779238, -775423, -773700, -765055, -761917, -759102, -755097, -755070, -749276, -746541, -745666, -740501, -735347, -735338, -732885, -731701, -728704, -727574, -722356, -717105, -716583, -713900, -708814, -700816, -679351, -671824, -669871, -667833, -666610, -666453, -663509, -657942, -657510, -644901, -629138, -596596, -594819, -592318, -579943, -578472, -576096, -575268, -574890, -573541, -572899, -571851, -570760, -569541, -569498, -567785, -564968, -564064, -562447, -561990, -559845, -553173, -552065, -542884, -542184, -537080, -534433, -531881, -529478, -524856, -523642, -519859, -514340, -513922, -510625, -507561, -507224, -501414, -501400, -496361, -493705, -480007, -458371, -440623, -409149, -407214, -406201, -406131, -402849, -402059, -395224, -391076, -390787, -390625, -385774, -384328, -384004, -373608, -372490, -372124, -370210, -352647, -337471, -290692, -290263, -284421, -280816, -277697, -273837, -268972, -248593, -246227, -242701, -240905, -237874, -235402, -233817, -226438, -207091, -168008, -132209, -132092, -132007, -131482, -131346, -130938, -130280, -129709, -126693, -126468, -126373, -125476, -124464, -124336, -123999, -123662, -123097, -122902, -122630, -121865, -121726, -121562, -120965, -120405, -118701, -118400, -117787, -117543, -117387, -117144, -117062, -116503, -115251, -115132, -113456, -112463, -112155, -111758, -111742, -111474, -111328, -111255, -110636, -110393, -108649, -101579, -96492, -95841, -94996, -93264, -91364, -90608, -90313, -89574, -87271, -77143, -74897, -73635, -39119, -38833, -32910, -28159, -20029, 79514, 213835, 399912, 20000374, 20001823, 20002205, 20002633, 20006680, 20006890, 20007132, 20007417, 20011324, 20012479, 20012526, 20013079, 20014160, 20014181, 20014579, 20014887, 20015057, 20015251, 20015274, 20015300, 20015533, 20015688, 20015725, 20015732, 20015742, 20015758, 20015795, 20016502, 20016621, 20017286, 20017349, 20021098, 20021296, 20022339, 20022659, 20022757, 20022851, 20022879, 20023182, 20023488, 20023524, 20024246, 20024809, 20025805, 20029490, 20030916, 20033146, 20033173, 20035538, 20037880, 20038859, 20040350, 20042778, 20046010, 20046120, 20050264, 20053799, 20054014, 20058684, 20061597, 20061717, 20063602, 20064211, 20064402, 20066659, 20067845, 20069878, 20075118, 20079110, 20080494, 20081054, 20081509, 20083006, 20085250, 20088325, 20090971, 20097593, 20097630, 20097871, 20103321, 20103791, 20104896, 20104955, 20108940, 20111994, 20115245, 20116092, 20123619, 20123908, 20127504, 20128111, 20128215, 20131185, 20133956, 20134081, 20137860, 20144883, 20145091, 20150599, 20150817, 20154335, 900000000, 900039384, 900039435, 900040280, 900047975, 900048034, 900048213, 900048870, 900049526, 900049585, 900050012, 900052829, 900052833, 900052834, 900052835, 900052836, 900052837, 900052838, 900052839, 900052840, 900052841, 900052842, 900052844, 900052845, 900052846, 900052847, 900052848, 900052849, 900052851, 900052853, 900052854, 900052855, 900052856) AND `city_city_translation`.`language_code` = 'ru' ) ORDER BY T3.`name` ASC; args=(-3730078, -3714993, -3714825, -3712125, -3414440, -3366242, -3212216, -3178767, -3160026, -3148348, -3106433, -3103581, -3102179, -3096108, -3091069, -3043275, -3042207, -3041912, -3040171, -3039267, -3038516, -3035173, -3034952, -3034701, -3034353, -3033871, -3033722, -3033718, -3029851, -3025025, -3024639, -3024309, -3024007, -3023495, -3023028, -3019679, -3019601, -3019132, -3015114, -3014703, -3013492, -3011273, -3006514, -3006140, -2996563, -2996523, -2996338, -2995930, -2994531, -2993218, -2990203, -2989168, -2981973, -2981545, -2980155, -2979687, -2974927, -2974462, -2972003, -2971968, -2970528, -2970141, -2969511, -2968530, -2967687, -2966930, -2966853, -2966244, -2964223, -2963575, -2962281, -2961506, -2960561, -2958321, -2950121, -2943527, -2941648, -2941280, -2936665, -2936262, -2934420, -2928684, -2928280, -2924570, -2924116, -2923678, -2923066, -2919283, -2918852, -2917908, -2916144, -2911004, -2899145, -2897205, -2896749, -2896432, -2886873, -2886746, -2883930, -2882404, -2880021, -2879191, -2877435, -2873843, -2866283, -2767043, -2764584, -2762812, -2753453, -2745636, -2744199, -2742107, -2739166, -2738616, -2737683, -2706092, -2705195, -2698521, -2679652, -2651804, -2648877, -2637882, -2625737, -2625660, -2624430, -2620663, -2615647, -2612321, -2611829, -2608164, -2607615, -2605646, -2605287, -2604911, -2604469, -2603961, -2603267, -2602512, -2602369, -2601889, -2601422, -2601144, -2600941, -2600535, -2600279, -2598194, -2597039, -2595943, -2595805, -2595386, -2594262, -2593403, -2593386, -2593226, -2592344, -2591777, -2590919, -2590498, -2589989, -2587757, -2579372, -2554935, -2554859, -2554817, -2554447, -2554000, -2553210, -2552994, -2552969, -2552809, -2552548, -2552151, -2552078, -2551757, -2551753, -2551451, -2551274, -2551235, -2551183, -2524279, -2503264, -2492129, -2482986, -2437894, -2424066, -2421883, -2404760, -2403010, -2402530, -2366485, -2353539, -2343962, -2342388, -2334555, -2334218, -2334069, -2331392, -2325645, -2276223, -2266494, -2258072, -2214877, -2173088, -2170180, -2167973, -2160205, -2159655, -2159606, -2156821, -2154520, -2154382, -2152943, -2152921, -2152403, -2152218, -2149006, -2147365, -2145932, -2145615, -2145280, -2145032, -2144863, -2144807, -2144141, -2144027, -2143610, -2140640, -2140567, -2140479, -2140452, -2112243, -2111972, -2111367, -2108361, -2106102, -2103041, -2102835, -2098033, -2097803, -2097701, -2093654, -2092770, -2092511, -2092174, -2090174, -2089356, -2088270, -2067935, -1997013, -1995515, -1995499, -1995338, -1992480, -1989985, -1982354, -1981445, -1971112, -1965564, -1964016, -1963947, -1959925, -1958757, -1956109, -1955925, -1955538, -1953257, -1951346, -1946324, -1941830, -1938815, -1935855, -1931786, -1931562, -1931546, -1930776, -1930588, -1929528, -1928564, -1925268, -1925258, -1924917, -1924465, -1922199, -1920233, -1919813, -1919548, -1912283, -1908634, -1908524, -1907161, -1905938, -1905584, -1903802, -1901835, -1900813, -1900774, -1900349, -1899743, -1898541, -1891486, -1887737, -1887191, -1883308, -1879835, -1876794, -1876356, -1871728, -1870735, -1865133, -1865057, -1862713, -1854320, -1853327, -1852370, -1849281, -1849253, -1847131, -1845975, -1843341, -1842944, -1841161, -1839098, -1839089, -1835238, -1832757, -1829320, -1829149, -1823084, -1822614, -1822294, -1821461, -1817680, -1810561, -1809855, -1804271, -1803994, -1800018, -1799639, -1794220, -1791959, -1790622, -1789153, -1788826, -1785903, -1785461, -1785434, -1783292, -1772098, -1771821, -1771505, -1771148, -1767857, -1766996, -1766950, -1762397, -1761951, -1761619, -1761123, -1760373, -1757722, -1756500, -1752234, -1751596, -1749194, -1747422, -1746443, -1743231, -1743182, -1743172, -1743065, -1742412, -1740635, -1736191, -1708147, -1704008, -1698603, -1690669, -1690444, -1690063, -1684228, -1679595, -1671447, -1669612, -1658079, -1655011, -1605526, -1603135, -1594675, -1586844, -1569058, -1563952, -1561728, -1555188, -1510346, -1508289, -1506909, -1504189, -1502950, -1502554, -1501986, -1476743, -1476233, -1476098, -1474712, -1474436, -1473937, -1473290, -1473278, -1473166, -1473153, -1471697, -1469710, -1468251, -1466824, -1464183, -1462807, -1462490, -1461464, -1461340, -1460939, -1460750, -1458949, -1457525, -1457494, -1456928, -1456813, -1456116, -1455068, -1454990, -1454460, -1454215, -1453260, -1452485, -1451964, -1451260, -1450921, -1450618, -1449947, -1449506, -1448468, -1447831, -1447117, -1447079, -1446426, -1442302, -1441792, -1441598, -1439527, -1438621, -1438604, -1432734, -1430647, -1426096, -1425294, -1424668, -1424354, -1423981, -1423684, -1421049, -1420906, -1420711, -1420293, -1419880, -1419454, -1418879, -1417924, -1416533, -1416177, -1416098, -1415036, -1413751, -1412526, -1412490, -1412198, -1411930, -1411193, -1409631, -1408925, -1408707, -1408524, -1408370, -1407705, -1407646, -1407447, -1407029, -1406959, -1406943, -1406939, -1406659, -1389822, -1388513, -1373945, -1368052, -1364995, -1353149, -1273769, -1273448, -1272393, -1240261, -1224926, -1217214, -1204094, -1187190, -1161664, -1156174, -1153951, -1151501, -1151195, -1148082, -1133206, -1113265, -1109108, -1064708, -1060168, -1059331, -1058303, -1057311, -1055659, -1054041, -1051195, -1049092, -1045268, -1044367, -1043968, -1041356, -1041320, -1038078, -1037865, -1037001, -1034272, -1033783, -1022136, -1013034, -979186, -970362, -955658, -938457, -932573, -927505, -926345, -910015, -904020, -901202, -897490, -878181, -872376, -851960, -850553, -844468, -843247, -840999, -840694, -838489, -837298, -829252, -826292, -814876, -801546, -789552, -787987, -785169, -784833, -782831, -782371, -782066, -781545, -781147, -779238, -775423, -773700, -765055, -761917, -759102, -755097, -755070, -749276, -746541, -745666, -740501, -735347, -735338, -732885, -731701, -728704, -727574, -722356, -717105, -716583, -713900, -708814, -700816, -679351, -671824, -669871, -667833, -666610, -666453, -663509, -657942, -657510, -644901, -629138, -596596, -594819, -592318, -579943, -578472, -576096, -575268, -574890, -573541, -572899, -571851, -570760, -569541, -569498, -567785, -564968, -564064, -562447, -561990, -559845, -553173, -552065, -542884, -542184, -537080, -534433, -531881, -529478, -524856, -523642, -519859, -514340, -513922, -510625, -507561, -507224, -501414, -501400, -496361, -493705, -480007, -458371, -440623, -409149, -407214, -406201, -406131, -402849, -402059, -395224, -391076, -390787, -390625, -385774, -384328, -384004, -373608, -372490, -372124, -370210, -352647, -337471, -290692, -290263, -284421, -280816, -277697, -273837, -268972, -248593, -246227, -242701, -240905, -237874, -235402, -233817, -226438, -207091, -168008, -132209, -132092, -132007, -131482, -131346, -130938, -130280, -129709, -126693, -126468, -126373, -125476, -124464, -124336, -123999, -123662, -123097, -122902, -122630, -121865, -121726, -121562, -120965, -120405, -118701, -118400, -117787, -117543, -117387, -117144, -117062, -116503, -115251, -115132, -113456, -112463, -112155, -111758, -111742, -111474, -111328, -111255, -110636, -110393, -108649, -101579, -96492, -95841, -94996, -93264, -91364, -90608, -90313, -89574, -87271, -77143, -74897, -73635, -39119, -38833, -32910, -28159, -20029, 79514, 213835, 399912, 20000374, 20001823, 20002205, 20002633, 20006680, 20006890, 20007132, 20007417, 20011324, 20012479, 20012526, 20013079, 20014160, 20014181, 20014579, 20014887, 20015057, 20015251, 20015274, 20015300, 20015533, 20015688, 20015725, 20015732, 20015742, 20015758, 20015795, 20016502, 20016621, 20017286, 20017349, 20021098, 20021296, 20022339, 20022659, 20022757, 20022851, 20022879, 20023182, 20023488, 20023524, 20024246, 20024809, 20025805, 20029490, 20030916, 20033146, 20033173, 20035538, 20037880, 20038859, 20040350, 20042778, 20046010, 20046120, 20050264, 20053799, 20054014, 20058684, 20061597, 20061717, 20063602, 20064211, 20064402, 20066659, 20067845, 20069878, 20075118, 20079110, 20080494, 20081054, 20081509, 20083006, 20085250, 20088325, 20090971, 20097593, 20097630, 20097871, 20103321, 20103791, 20104896, 20104955, 20108940, 20111994, 20115245, 20116092, 20123619, 20123908, 20127504, 20128111, 20128215, 20131185, 20133956, 20134081, 20137860, 20144883, 20145091, 20150599, 20150817, 20154335, 900000000, 900039384, 900039435, 900040280, 900047975, 900048034, 900048213, 900048870, 900049526, 900049585, 900050012, 900052829, 900052833, 900052834, 900052835, 900052836, 900052837, 900052838, 900052839, 900052840, 900052841, 900052842, 900052844, 900052845, 900052846, 900052847, 900052848, 900052849, 900052851, 900052853, 900052854, 900052855, 900052856, 'ru') +2015-07-28 11:11:46,046 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:46,238 [DEBUG] django.db.backends: (0.005) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:46,250 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:46,395 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:46,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:46,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:46,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:46,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:46,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:46,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:46,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:46,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:46,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:46,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:46,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:46,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:46,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:46,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:46,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:46,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:46,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:46,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:46,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:46,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:46,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:46,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:46,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:46,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:46,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:46,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:46,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:46,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:46,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:46,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:46,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:46,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:46,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:46,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:46,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:46,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:46,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:46,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:46,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:46,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:46,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:46,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:46,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:46,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:46,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:46,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:46,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:46,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:46,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:46,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:46,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:46,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:46,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:46,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:46,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:46,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:46,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:46,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:46,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:46,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:46,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:46,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:46,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:46,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:46,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:46,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:46,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:46,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:46,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:46,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:46,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:46,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:46,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:46,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:46,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:46,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:46,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:46,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:46,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:46,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:46,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:46,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:46,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:46,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:46,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:46,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:46,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:46,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:46,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:46,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:46,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:46,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:46,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:46,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:46,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:46,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:46,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:46,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:46,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:46,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:46,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:46,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:46,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:46,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:46,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:46,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:46,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:46,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:46,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:46,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:46,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:46,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:46,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:46,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:46,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:46,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:46,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:46,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:46,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:46,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:46,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:46,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:46,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:46,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:46,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:46,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:46,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:46,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:46,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:46,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:46,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:46,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:46,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:46,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:46,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:46,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:46,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:46,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:46,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:46,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:46,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:46,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:46,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:46,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:46,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:46,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:46,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:46,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:46,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:46,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:46,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:46,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:46,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:46,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:46,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:46,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:46,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:46,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:46,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:46,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:46,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:46,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:46,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:46,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:46,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:46,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:46,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:46,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:46,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:46,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:46,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:46,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:46,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:46,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:46,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:46,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:46,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:46,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:46,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:46,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:46,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:46,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:46,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:46,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:46,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:46,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:46,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:46,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:46,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:46,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:46,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:46,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:46,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:46,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:46,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:46,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:46,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:46,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:46,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:46,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:46,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:46,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:46,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:46,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:46,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:47,027 [DEBUG] django.db.backends: (0.124) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:47,496 [DEBUG] django.db.backends: (0.138) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:47,895 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:47,917 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:47,926 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:47,929 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:47,931 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:47,933 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:47,935 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:47,938 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:47,940 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:47,942 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:47,944 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:47,947 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:47,949 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:47,951 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:47,953 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:47,956 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:47,958 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:47,960 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:47,962 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:47,964 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:47,967 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:47,969 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:47,971 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:47,974 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:47,976 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:47,978 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:47,981 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:47,983 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:47,985 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:47,987 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:47,990 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:47,992 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:47,994 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:47,996 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:47,999 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:48,001 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:48,003 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:48,005 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:48,008 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:48,010 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:48,012 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:48,016 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:48,018 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:48,020 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:48,023 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:48,025 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:48,027 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:48,030 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:48,032 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:48,034 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:48,037 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:48,039 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:48,041 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:48,043 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:48,046 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:48,048 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:48,050 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:48,052 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:48,055 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:48,057 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:48,059 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:48,061 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:48,063 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:48,065 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:48,312 [DEBUG] django.db.backends: (0.060) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:48,612 [DEBUG] django.db.backends: (0.131) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:49,115 [DEBUG] django.db.backends: (0.119) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:49,445 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:49,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:49,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:49,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:49,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:49,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:49,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:49,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:49,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:49,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:49,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:49,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:49,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:49,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:49,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:49,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:49,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:49,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:49,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:49,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:49,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:49,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:49,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:49,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:49,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:49,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:49,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:49,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:49,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:49,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:49,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:49,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:49,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:49,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:49,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:49,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:49,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:49,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:49,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:49,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:49,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:49,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:49,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:49,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:49,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:49,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:49,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:49,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:49,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:49,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:49,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:49,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:49,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:49,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:49,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:49,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:49,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:49,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:49,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:49,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:49,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:49,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:49,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:49,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:49,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:49,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:49,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:49,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:49,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:49,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:49,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:49,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:49,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:49,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:49,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:49,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:49,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:49,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:49,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:49,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:49,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:49,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:49,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:49,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:49,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:49,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:49,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:49,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:49,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:49,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:49,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:49,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:49,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:49,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:49,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:49,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:49,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:49,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:49,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:49,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:49,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:49,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:49,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:49,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:49,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:49,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:49,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:49,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:49,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:49,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:49,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:49,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:49,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:49,721 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:49,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:49,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:49,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:49,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:49,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:49,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:49,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:49,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:49,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:49,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:49,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:49,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:49,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:49,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:49,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:49,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:49,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:49,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:49,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:49,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:49,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:49,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:49,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:49,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:49,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:49,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:49,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:49,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:49,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:49,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:49,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:49,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:49,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:49,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:49,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:49,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:49,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:49,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:49,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:49,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:49,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:49,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:49,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:49,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:49,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:49,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:49,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:49,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:49,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:49,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:49,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:49,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:49,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:49,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:49,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:49,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:49,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:49,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:49,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:49,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:49,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:49,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:49,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:49,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:49,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:49,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:49,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:49,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:49,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:49,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:49,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:49,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:49,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:49,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:49,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:49,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:49,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:49,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:49,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:49,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:49,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:49,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:49,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:49,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:49,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:49,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:49,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:49,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:49,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:49,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:49,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:49,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:49,933 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:50,077 [DEBUG] django.db.backends: (0.133) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:50,536 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:50,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:50,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:50,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:50,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:50,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:50,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:50,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:50,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:50,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:50,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:50,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:50,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:50,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:50,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:50,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:50,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:50,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:50,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:50,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:50,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:50,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:50,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:50,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:50,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:50,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:50,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:50,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:50,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:50,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:50,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:50,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:50,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:50,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:50,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:50,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:50,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:50,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:50,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:50,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:50,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:50,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:50,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:50,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:50,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:50,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:50,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:50,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:50,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:50,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:50,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:50,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:50,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:50,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:50,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:50,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:50,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:50,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:50,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:50,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:50,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:50,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:50,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:50,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:50,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:50,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:50,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:50,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:50,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:50,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:50,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:50,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:50,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:50,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:50,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:50,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:50,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:50,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:50,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:50,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:50,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:50,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:50,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:50,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:50,735 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:50,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:50,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:50,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:50,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:50,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:50,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:50,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:50,753 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:50,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:50,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:50,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:50,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:50,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:50,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:50,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:50,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:50,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:50,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:50,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:50,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:50,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:50,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:50,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:50,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:50,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:50,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:50,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:50,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:50,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:50,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:50,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:50,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:50,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:50,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:50,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:50,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:50,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:50,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:50,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:50,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:50,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:50,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:50,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:50,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:50,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:50,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:50,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:50,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:50,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:50,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:50,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:50,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:50,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:50,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:50,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:50,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:50,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:50,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:50,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:50,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:50,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:50,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:50,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:50,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:50,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:50,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:50,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:50,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:50,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:50,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:50,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:50,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:50,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:50,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:50,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:50,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:50,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:50,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:50,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:50,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:50,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:50,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:50,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:50,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:50,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:50,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:50,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:50,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:50,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:50,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:50,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:50,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:50,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:50,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:50,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:50,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:50,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:50,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:50,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:50,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:50,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:50,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:50,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:50,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:50,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:50,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:50,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:50,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:50,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:50,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:50,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:50,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:50,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:51,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:51,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:51,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:51,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:51,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:51,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:51,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:51,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:51,062 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,085 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,225 [DEBUG] django.db.backends: (0.138) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,610 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:51,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:51,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:51,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:51,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:51,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:51,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:51,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:51,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:51,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:51,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:51,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:51,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:51,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:51,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:51,652 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:51,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:51,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:51,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:51,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:51,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:51,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:51,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:51,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:51,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:51,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:51,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:51,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:51,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:51,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:51,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:51,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:51,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:51,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:51,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:51,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:51,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:51,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:51,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:51,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:51,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:51,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:51,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:51,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:51,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:51,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:51,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:51,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:51,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:51,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:51,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:51,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:51,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:51,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:51,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:51,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:51,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:51,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:51,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:51,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:51,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:51,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:51,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:51,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:51,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:51,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:51,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:51,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:51,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:51,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:51,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:51,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:51,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:51,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:51,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:51,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:51,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:51,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:51,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:51,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:51,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:51,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:51,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:51,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:51,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:51,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:51,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:51,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:51,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:51,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:51,821 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:51,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:51,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:51,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:51,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:51,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:51,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:51,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:51,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:51,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:51,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:51,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:51,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:51,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:51,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:51,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:51,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:51,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:51,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:51,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:51,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:51,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:51,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:51,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:51,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:51,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:51,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:51,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:51,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:51,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:51,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:51,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:51,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:51,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:51,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:51,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:51,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:51,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:51,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:51,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:51,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:51,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:51,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:51,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:51,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:51,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:51,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:51,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:51,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:51,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:51,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:51,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:51,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:51,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:51,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:51,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:51,957 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:51,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:51,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:51,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:51,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:51,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:51,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:51,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:51,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:51,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:51,980 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:51,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:51,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:51,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:51,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:51,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:51,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:51,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:51,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:52,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:52,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:52,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:52,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:52,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:52,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:52,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:52,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:52,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:52,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:52,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:52,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:52,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:52,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:52,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:52,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:52,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:52,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:52,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:52,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:52,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:52,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:52,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:52,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:52,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:52,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:52,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:52,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:52,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:52,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:52,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:52,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:52,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:52,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:52,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:52,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:52,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:52,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:52,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:52,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:52,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:52,095 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:52,121 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:52,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:52,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:52,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:52,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:52,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:52,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:52,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:52,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:52,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:52,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:52,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:52,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:52,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:52,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:52,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:52,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:52,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:52,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:52,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:52,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:52,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:52,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:52,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:52,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:52,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:52,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:52,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:52,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:52,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:52,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:52,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:52,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:52,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:52,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:52,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:52,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:52,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:52,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:52,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:52,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:52,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:52,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:52,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:52,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:52,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:52,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:52,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:52,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:52,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:52,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:52,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:52,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:52,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:52,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:52,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:52,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:52,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:52,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:52,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:52,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:52,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:52,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:52,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:52,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:52,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:52,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:52,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:52,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:52,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:52,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:52,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:52,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:52,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:52,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:52,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:52,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:52,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:52,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:52,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:52,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:52,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:52,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:52,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:52,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:52,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:52,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:52,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:52,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:52,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:52,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:52,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:52,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:52,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:52,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:52,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:52,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:52,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:52,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:52,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:52,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:52,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:52,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:52,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:52,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:52,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:52,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:52,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:52,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:52,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:52,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:52,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:52,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:52,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:52,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:52,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:52,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:52,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:52,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:52,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:52,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:52,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:52,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:52,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:52,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:52,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:52,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:52,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:52,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:52,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:52,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:52,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:52,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:52,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:52,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:52,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:52,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:52,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:52,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:52,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:52,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:52,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:52,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:52,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:52,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:52,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:52,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:52,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:52,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:52,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:52,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:52,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:52,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:52,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:52,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:52,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:52,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:52,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:52,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:52,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:52,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:52,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:52,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:52,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:52,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:52,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:52,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:52,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:52,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:52,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:52,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:52,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:52,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:52,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:52,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:52,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:52,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:52,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:52,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:52,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:52,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:52,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:52,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:52,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:52,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:52,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:52,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:52,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:52,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:52,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:52,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:52,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:52,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:52,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:52,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:52,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:52,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:52,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:52,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:52,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:52,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:52,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:52,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:52,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:52,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:52,621 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:52,691 [DEBUG] django.db.backends: (0.060) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:52,864 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,877 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:52,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:52,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:52,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:52,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:52,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:52,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:52,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:52,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:52,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:52,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:52,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:52,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:52,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:52,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:52,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:52,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:52,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:52,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:52,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:52,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:52,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:52,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:52,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:52,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:52,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:52,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:52,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:52,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:52,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:52,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:52,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:52,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:52,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:52,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:52,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:52,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:52,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:52,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:52,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:52,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:52,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:52,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:52,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:52,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:52,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:52,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:52,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:52,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:52,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:53,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:53,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:53,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:53,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:53,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:53,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:53,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:53,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:53,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:53,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:53,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:53,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:53,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:53,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:53,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:53,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:53,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:53,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:53,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:53,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:53,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:53,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:53,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:53,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:53,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:53,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:53,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:53,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:53,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:53,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:53,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:53,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:53,075 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:53,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:53,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:53,082 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:53,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:53,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:53,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:53,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:53,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:53,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:53,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:53,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:53,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:53,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:53,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:53,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:53,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:53,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:53,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:53,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:53,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:53,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:53,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:53,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:53,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:53,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:53,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:53,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:53,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:53,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:53,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:53,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:53,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:53,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:53,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:53,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:53,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:53,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:53,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:53,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:53,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:53,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:53,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:53,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:53,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:53,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:53,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:53,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:53,193 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:53,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:53,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:53,200 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:53,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:53,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:53,207 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:53,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:53,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:53,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:53,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:53,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:53,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:53,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:53,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:53,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:53,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:53,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:53,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:53,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:53,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:53,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:53,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:53,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:53,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:53,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:53,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:53,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:53,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:53,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:53,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:53,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:53,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:53,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:53,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:53,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:53,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:53,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:53,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:53,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:53,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:53,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:53,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:53,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:53,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:53,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:53,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:53,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:53,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:53,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:53,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:53,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:53,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:53,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:53,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:53,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:53,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:53,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:53,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:53,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:53,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:53,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:53,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:53,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:53,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:53,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:53,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:53,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:53,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:53,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:53,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:53,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:53,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:53,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:53,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:53,370 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:53,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:53,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:53,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:53,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:53,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:53,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:53,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:53,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:53,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:53,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:53,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:53,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:53,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:53,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:53,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:53,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:53,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:53,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:53,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:53,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:53,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:53,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:53,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:53,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:53,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:53,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:53,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:53,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:53,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:53,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:53,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:53,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:53,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:53,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:53,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:53,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:53,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:53,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:53,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:53,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:53,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:53,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:53,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:53,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:53,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:53,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:53,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:53,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:53,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:53,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:53,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:53,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:53,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:53,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:53,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:53,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:53,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:53,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:53,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:53,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:53,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:53,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:53,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:53,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:53,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:53,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:53,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:53,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:53,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:53,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:53,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:53,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:53,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:53,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:53,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:53,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:53,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:53,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:53,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:53,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:53,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:53,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:53,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:53,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:53,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:53,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:53,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:53,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:53,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:53,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:53,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:53,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:53,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:53,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:53,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:53,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:53,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:53,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:53,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:53,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:53,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:53,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:53,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:53,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:53,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:53,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:53,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:53,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:53,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:53,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:53,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:53,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:53,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:53,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:53,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:53,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:53,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:53,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:53,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:53,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:53,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:53,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:53,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:53,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:53,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:53,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:53,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:53,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:53,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:53,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:53,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:53,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:53,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:53,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:53,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:53,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:53,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:53,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:53,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:53,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:53,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:53,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:53,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:53,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:53,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:53,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:53,721 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:53,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:53,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:53,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:53,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:53,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:53,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:53,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:53,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:53,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:53,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:53,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:53,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:53,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:53,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:53,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:53,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:53,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:53,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:53,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:53,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:53,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:53,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:53,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:53,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:53,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:53,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:53,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:53,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:53,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:53,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:53,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:53,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:53,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:53,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:53,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:53,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:53,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:53,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:53,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:53,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:53,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:53,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:53,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:53,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:53,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:53,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:53,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:53,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:53,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:53,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:53,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:53,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:53,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:53,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:53,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:53,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:53,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:53,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:53,882 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:53,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:53,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:53,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:53,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:53,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:53,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:53,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:53,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:53,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:53,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:53,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:53,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:53,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:53,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:53,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:53,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:53,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:53,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:53,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:53,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:53,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:53,943 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:53,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:53,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:53,950 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:53,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:53,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:53,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:53,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:53,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:53,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:53,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:53,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:53,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:53,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:53,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:53,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:53,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:53,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:53,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:53,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:53,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:53,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:53,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:53,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:53,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:54,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:54,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:54,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:54,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:54,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:54,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:54,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:54,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:54,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:54,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:54,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:54,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:54,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:54,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:54,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:54,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:54,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:54,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:54,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:54,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:54,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:54,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:54,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:54,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:54,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:54,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:54,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:54,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:54,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:54,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:54,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:54,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:54,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:54,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:54,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:54,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:54,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:54,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:54,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:54,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:54,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:54,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:54,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:54,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:54,103 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:54,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:54,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:54,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:54,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:54,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:54,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:54,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:54,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:54,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:54,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:54,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:54,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:54,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:54,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:54,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:54,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:54,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:54,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:54,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:54,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:54,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:54,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:54,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:54,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:54,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:54,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:54,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:54,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:54,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:54,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:54,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:54,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:54,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:54,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:54,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:54,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:54,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:54,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:54,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:54,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:54,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:54,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:54,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:54,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:54,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:54,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:54,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:54,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:54,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:54,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:54,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:54,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:54,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:54,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:54,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:54,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:54,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:54,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:54,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:54,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:54,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:54,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:54,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:54,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:54,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:54,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:54,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:54,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:54,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:54,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:54,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:54,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:54,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:54,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:54,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:54,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:54,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:54,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:54,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:54,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:54,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:54,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:54,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:54,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:54,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:54,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:54,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:54,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:54,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:54,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:54,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:54,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:54,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:54,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:54,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:54,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:54,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:54,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:54,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:54,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:54,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:54,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:54,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:54,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:54,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:54,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:54,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:54,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:54,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:54,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:54,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:54,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:54,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:54,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:54,390 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:54,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:54,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:54,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:54,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:54,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:54,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:54,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:54,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:54,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:54,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:54,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:54,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:54,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:54,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:54,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:54,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:54,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:54,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:54,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:54,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:54,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:54,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:54,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:54,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:54,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:54,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:54,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:54,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:54,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:54,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:54,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:54,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:54,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:54,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:54,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:54,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:54,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:54,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:54,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:54,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:54,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:54,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:54,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:54,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:54,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:54,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:54,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:54,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:54,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:54,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:54,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:54,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:54,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:54,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:54,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:54,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:54,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:54,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:54,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:54,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:54,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:54,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:54,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:54,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:54,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:54,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:54,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:54,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:54,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:54,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:54,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:54,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:54,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:54,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:54,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:54,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:54,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:54,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:54,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:54,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:54,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:54,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:54,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:54,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:54,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:54,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:54,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:54,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:54,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:54,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:54,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:54,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:54,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:54,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:54,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:54,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:54,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:54,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:54,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:54,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:54,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:54,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:54,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:54,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:54,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:54,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:54,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:54,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:54,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:54,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:54,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:54,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:54,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:54,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:54,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:54,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:54,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:54,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:54,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:54,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:54,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:54,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:54,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:54,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:54,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:54,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:54,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:54,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:54,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:54,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:54,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:54,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:54,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:54,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:54,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:54,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:54,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:54,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:54,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:54,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:54,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:54,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:54,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:54,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:54,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:54,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:54,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:54,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:54,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:54,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:54,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:54,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:54,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:54,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:54,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:54,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:54,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:54,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:54,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:54,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:54,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:54,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:54,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:54,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:54,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:54,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:54,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:54,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:54,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:54,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:54,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:54,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:54,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:54,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:54,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:54,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:54,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:54,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:54,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:54,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:54,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:54,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:54,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:54,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:54,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:54,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:54,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:54,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:54,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:54,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:54,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:54,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:54,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:54,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:54,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:54,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:54,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:54,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:54,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:54,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:54,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:54,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:54,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:54,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:54,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:55,202 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:11:55,206 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:11:55,212 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:11:55,218 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:11:55,252 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:55,319 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,326 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:11:55,328 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:11:55,329 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:11:55,334 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:11:55,337 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,340 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:11:55,349 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:11:55,349 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:11:55,353 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,356 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,359 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:11:55,362 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:11:55,362 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:11:55,366 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,369 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,371 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:11:55,437 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:11:55,444 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,449 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,455 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,460 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,466 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,472 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,474 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:11:55,483 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,489 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,494 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,500 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,505 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,511 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,512 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:11:55,513 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:11:55,515 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:11:55,518 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:11:55,520 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:11:55,522 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:11:55,522 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:11:55,525 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:11:55,527 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:11:55,527 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:11:55,530 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:11:55,540 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:55,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:55,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:55,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:55,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:55,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:55,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:55,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:55,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:55,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:55,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:55,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:55,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:55,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:55,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:55,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:55,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:55,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:55,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:55,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:55,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:55,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:55,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:55,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:55,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:55,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:55,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:55,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:55,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:55,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:55,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:55,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:55,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:55,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:55,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:55,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:55,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:55,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:55,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:55,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:55,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:55,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:55,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:55,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:55,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:55,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:55,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:55,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:55,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:55,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:55,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:55,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:55,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:55,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:55,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:55,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:55,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:55,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:55,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:55,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:55,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:55,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:55,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:55,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:55,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:55,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:55,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:55,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:55,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:55,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:55,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:55,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:55,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:55,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:55,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:55,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:55,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:55,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:55,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:55,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:55,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:55,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:55,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:55,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:55,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:55,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:55,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:55,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:55,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:55,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:55,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:55,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:55,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:55,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:55,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:55,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:55,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:55,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:55,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:55,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:55,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:55,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:55,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:55,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:55,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:55,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:55,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:55,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:55,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:55,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:55,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:55,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:55,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:55,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:55,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:55,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:55,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:55,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:55,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:55,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:55,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:55,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:55,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:55,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:55,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:55,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:55,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:55,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:55,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:55,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:55,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:55,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:55,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:55,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:55,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:55,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:55,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:55,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:55,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:55,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:55,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:55,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:55,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:55,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:55,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:55,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:55,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:55,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:55,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:55,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:55,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:55,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:55,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:55,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:55,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:55,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:55,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:55,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:55,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:55,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:55,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:55,959 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:55,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:55,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:55,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:55,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:55,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:55,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:55,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:55,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:55,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:55,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:55,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:55,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:55,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:55,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:55,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:55,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:56,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:56,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:56,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:56,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:56,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:56,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:56,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:56,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:56,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:56,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:56,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:56,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:56,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:56,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:56,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:56,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:56,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:56,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:56,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:56,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:56,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:56,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:56,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:56,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:56,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:56,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:56,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:56,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:28,993 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:28,995 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,015 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,016 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,032 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,033 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,088 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,089 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,156 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,157 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,165 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,166 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,226 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,233 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:29,235 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:29,238 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:29,240 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:29,243 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:29,245 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:29,248 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:29,250 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:29,252 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:29,255 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:29,257 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:29,259 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:29,262 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:29,264 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:29,267 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:29,269 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:29,271 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:29,274 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:29,276 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:29,278 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:29,280 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:29,283 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:29,285 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:29,287 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:29,290 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:29,292 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:29,294 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:29,297 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:29,299 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:29,301 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:29,303 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:29,306 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:29,308 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:29,310 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:29,313 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:29,315 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:29,317 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:29,320 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:29,322 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:29,324 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:29,327 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:29,329 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:29,331 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:29,333 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:29,336 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:29,338 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:29,340 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:29,343 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:29,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:29,347 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:29,349 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:29,352 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:29,354 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:29,356 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:29,359 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:29,361 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:29,363 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:29,366 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:29,368 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:29,370 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:29,373 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:29,376 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,495 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,613 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,623 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,814 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:29,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:29,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:29,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:29,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:29,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:29,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:29,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:29,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:29,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:29,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:29,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:29,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:29,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:29,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:29,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:29,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:29,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:29,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:29,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:29,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:29,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:29,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:29,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:29,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:29,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:29,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:29,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:29,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:29,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:29,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:29,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:29,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:29,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:29,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:29,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:29,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:29,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:29,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:29,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:29,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:29,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:29,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:29,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:29,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:29,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:29,932 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:29,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:29,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:29,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:29,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:29,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:29,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:29,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:29,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:29,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:29,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:29,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:29,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:29,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:29,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:29,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:29,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:29,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:29,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:29,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:29,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:29,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:29,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:29,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:29,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:29,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:29,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:29,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:29,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:30,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:30,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:30,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:30,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:30,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:30,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:30,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:30,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:30,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:30,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:30,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:30,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:30,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:30,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:30,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:30,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:30,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:30,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:30,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:30,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:30,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:30,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:30,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:30,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:30,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:30,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:30,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:30,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:30,075 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:30,078 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:30,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:30,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:30,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:30,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:30,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:30,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:30,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:30,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:30,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:30,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:30,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:30,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:30,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:30,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:30,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:30,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:30,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:30,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:30,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:30,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:30,127 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:30,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:30,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:30,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:30,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:30,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:30,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:30,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:30,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:30,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:30,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:30,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:30,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:30,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:30,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:30,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:30,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:30,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:30,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:30,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:30,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:30,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:30,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:30,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:30,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:30,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:30,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:30,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:30,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:30,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:30,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:30,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:30,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:30,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:30,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:30,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:30,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:30,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:30,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:30,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:30,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:30,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:30,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:30,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:30,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:30,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:30,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:30,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:30,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:30,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:30,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:30,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:30,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:30,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:30,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:30,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:30,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:30,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:30,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:30,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:30,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:30,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:30,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:30,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:30,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:30,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:30,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:30,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:30,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:30,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:30,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:30,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:30,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:30,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:30,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:30,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:30,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:30,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:30,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:30,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:30,434 [DEBUG] django.db.backends: (0.117) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:30,890 [DEBUG] django.db.backends: (0.136) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:31,276 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:31,301 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:31,307 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:31,310 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:31,312 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:31,314 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:31,317 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:31,319 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:31,323 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:31,327 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:31,330 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:31,333 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:31,336 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:31,339 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:31,342 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:31,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:31,348 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:31,350 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:31,354 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:31,357 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:31,360 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:31,362 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:31,365 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:31,368 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:31,371 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:31,373 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:31,377 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:31,379 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:31,383 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:31,385 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:31,388 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:31,391 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:31,394 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:31,397 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:31,401 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:31,405 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:31,408 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:31,411 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:31,414 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:31,417 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:31,421 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:31,424 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:31,428 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:31,431 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:31,435 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:31,438 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:31,442 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:31,445 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:31,448 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:31,452 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:31,456 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:31,459 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:31,462 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:31,465 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:31,468 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:31,472 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:31,475 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:31,478 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:31,482 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:31,486 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:31,489 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:31,492 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:31,495 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:31,497 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:31,820 [DEBUG] django.db.backends: (0.073) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:32,201 [DEBUG] django.db.backends: (0.171) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:32,764 [DEBUG] django.db.backends: (0.116) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:33,086 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:33,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:33,099 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:33,101 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:33,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:33,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:33,108 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:33,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:33,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:33,115 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:33,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:33,120 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:33,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:33,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:33,127 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:33,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:33,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:33,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:33,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:33,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:33,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:33,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:33,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:33,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:33,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:33,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:33,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:33,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:33,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:33,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:33,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:33,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:33,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:33,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:33,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:33,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:33,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:33,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:33,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:33,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:33,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:33,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:33,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:33,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:33,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:33,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:33,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:33,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:33,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:33,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:33,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:33,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:33,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:33,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:33,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:33,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:33,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:33,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:33,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:33,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:33,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:33,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:33,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:33,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:33,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:33,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:33,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:33,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:33,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:33,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:33,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:33,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:33,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:33,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:33,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:33,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:33,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:33,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:33,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:33,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:33,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:33,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:33,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:33,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:33,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:33,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:33,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:33,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:33,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:33,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:33,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:33,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:33,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:33,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:33,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:33,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:33,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:33,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:33,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:33,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:33,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:33,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:33,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:33,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:33,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:33,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:33,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:33,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:33,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:33,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:33,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:33,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:33,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:33,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:33,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:33,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:33,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:33,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:33,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:33,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:33,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:33,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:33,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:33,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:33,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:33,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:33,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:33,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:33,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:33,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:33,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:33,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:33,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:33,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:33,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:33,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:33,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:33,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:33,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:33,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:33,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:33,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:33,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:33,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:33,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:33,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:33,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:33,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:33,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:33,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:33,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:33,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:33,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:33,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:33,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:33,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:33,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:33,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:33,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:33,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:33,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:33,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:33,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:33,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:33,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:33,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:33,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:33,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:33,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:33,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:33,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:33,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:33,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:33,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:33,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:33,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:33,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:33,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:33,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:33,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:33,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:33,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:33,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:33,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:33,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:33,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:33,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:33,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:33,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:33,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:33,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:33,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:33,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:33,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:33,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:33,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:33,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:33,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:33,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:33,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:33,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:33,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:33,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:33,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:33,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:33,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:33,587 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:33,732 [DEBUG] django.db.backends: (0.134) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,110 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:34,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:34,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:34,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:34,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:34,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:34,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:34,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:34,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:34,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:34,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:34,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:34,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:34,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:34,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:34,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:34,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:34,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:34,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:34,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:34,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:34,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:34,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:34,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:34,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:34,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:34,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:34,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:34,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:34,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:34,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:34,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:34,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:34,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:34,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:34,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:34,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:34,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:34,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:34,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:34,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:34,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:34,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:34,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:34,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:34,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:34,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:34,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:34,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:34,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:34,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:34,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:34,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:34,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:34,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:34,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:34,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:34,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:34,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:34,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:34,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:34,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:34,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:34,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:34,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:34,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:34,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:34,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:34,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:34,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:34,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:34,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:34,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:34,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:34,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:34,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:34,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:34,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:34,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:34,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:34,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:34,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:34,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:34,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:34,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:34,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:34,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:34,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:34,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:34,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:34,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:34,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:34,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:34,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:34,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:34,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:34,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:34,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:34,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:34,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:34,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:34,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:34,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:34,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:34,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:34,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:34,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:34,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:34,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:34,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:34,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:34,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:34,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:34,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:34,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:34,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:34,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:34,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:34,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:34,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:34,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:34,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:34,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:34,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:34,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:34,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:34,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:34,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:34,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:34,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:34,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:34,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:34,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:34,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:34,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:34,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:34,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:34,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:34,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:34,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:34,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:34,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:34,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:34,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:34,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:34,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:34,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:34,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:34,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:34,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:34,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:34,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:34,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:34,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:34,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:34,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:34,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:34,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:34,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:34,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:34,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:34,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:34,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:34,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:34,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:34,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:34,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:34,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:34,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:34,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:34,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:34,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:34,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:34,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:34,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:34,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:34,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:34,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:34,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:34,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:34,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:34,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:34,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:34,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:34,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:34,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:34,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:34,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:34,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:34,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:34,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:34,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:34,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:34,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:34,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:34,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:34,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:34,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:34,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:34,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:34,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:34,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:34,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:34,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:34,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:34,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:34,665 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,777 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,919 [DEBUG] django.db.backends: (0.140) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:35,299 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:35,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:35,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:35,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:35,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:35,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:35,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:35,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:35,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:35,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:35,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:35,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:35,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:35,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:35,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:35,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:35,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:35,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:35,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:35,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:35,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:35,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:35,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:35,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:35,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:35,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:35,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:35,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:35,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:35,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:35,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:35,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:35,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:35,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:35,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:35,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:35,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:35,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:35,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:35,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:35,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:35,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:35,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:35,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:35,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:35,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:35,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:35,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:35,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:35,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:35,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:35,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:35,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:35,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:35,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:35,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:35,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:35,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:35,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:35,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:35,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:35,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:35,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:35,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:35,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:35,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:35,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:35,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:35,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:35,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:35,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:35,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:35,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:35,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:35,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:35,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:35,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:35,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:35,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:35,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:35,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:35,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:35,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:35,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:35,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:35,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:35,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:35,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:35,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:35,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:35,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:35,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:35,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:35,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:35,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:35,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:35,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:35,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:35,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:35,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:35,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:35,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:35,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:35,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:35,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:35,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:35,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:35,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:35,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:35,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:35,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:35,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:35,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:35,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:35,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:35,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:35,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:35,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:35,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:35,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:35,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:35,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:35,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:35,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:35,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:35,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:35,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:35,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:35,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:35,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:35,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:35,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:35,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:35,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:35,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:35,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:35,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:35,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:35,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:35,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:35,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:35,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:35,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:35,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:35,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:35,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:35,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:35,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:35,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:35,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:35,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:35,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:35,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:35,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:35,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:35,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:35,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:35,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:35,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:35,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:35,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:35,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:35,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:35,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:35,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:35,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:35,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:35,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:35,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:35,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:35,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:35,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:35,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:35,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:35,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:35,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:35,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:35,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:35,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:35,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:35,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:35,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:35,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:35,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:35,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:35,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:35,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:35,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:35,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:35,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:35,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:35,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:35,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:35,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:35,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:35,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:35,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:35,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:35,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:35,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:35,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:35,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:35,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:35,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:35,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:35,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:35,809 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:35,832 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:35,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:35,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:35,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:35,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:35,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:35,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:35,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:35,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:35,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:35,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:35,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:35,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:35,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:35,873 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:35,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:35,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:35,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:35,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:35,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:35,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:35,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:35,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:35,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:35,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:35,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:35,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:35,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:35,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:35,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:35,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:35,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:35,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:35,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:35,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:35,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:35,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:35,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:35,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:35,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:35,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:35,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:35,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:35,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:35,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:35,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:35,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:35,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:35,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:35,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:35,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:35,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:35,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:35,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:35,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:35,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:35,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:35,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:35,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:35,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:35,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:35,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:35,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:35,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:35,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:35,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:35,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:35,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:35,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:36,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:36,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:36,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:36,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:36,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:36,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:36,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:36,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:36,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:36,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:36,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:36,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:36,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:36,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:36,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:36,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:36,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:36,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:36,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:36,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:36,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:36,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:36,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:36,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:36,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:36,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:36,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:36,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:36,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:36,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:36,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:36,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:36,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:36,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:36,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:36,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:36,094 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:36,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:36,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:36,101 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:36,103 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:36,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:36,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:36,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:36,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:36,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:36,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:36,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:36,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:36,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:36,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:36,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:36,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:36,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:36,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:36,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:36,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:36,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:36,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:36,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:36,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:36,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:36,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:36,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:36,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:36,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:36,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:36,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:36,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:36,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:36,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:36,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:36,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:36,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:36,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:36,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:36,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:36,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:36,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:36,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:36,193 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:36,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:36,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:36,200 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:36,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:36,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:36,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:36,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:36,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:36,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:36,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:36,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:36,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:36,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:36,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:36,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:36,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:36,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:36,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:36,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:36,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:36,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:36,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:36,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:36,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:36,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:36,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:36,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:36,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:36,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:36,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:36,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:36,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:36,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:36,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:36,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:36,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:36,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:36,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:36,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:36,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:36,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:36,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:36,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:36,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:36,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:36,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:36,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:36,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:36,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:36,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:36,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:36,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:36,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:36,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:36,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:36,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:36,325 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:36,394 [DEBUG] django.db.backends: (0.059) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:36,560 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:36,574 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:36,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:36,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:36,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:36,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:36,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:36,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:36,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:36,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:36,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:36,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:36,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:36,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:36,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:36,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:36,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:36,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:36,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:36,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:36,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:36,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:36,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:36,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:36,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:36,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:36,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:36,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:36,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:36,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:36,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:36,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:36,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:36,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:36,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:36,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:36,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:36,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:36,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:36,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:36,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:36,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:36,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:36,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:36,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:36,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:36,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:36,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:36,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:36,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:36,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:36,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:36,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:36,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:36,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:36,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:36,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:36,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:36,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:36,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:36,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:36,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:36,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:36,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:36,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:36,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:36,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:36,735 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:36,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:36,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:36,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:36,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:36,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:36,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:36,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:36,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:36,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:36,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:36,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:36,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:36,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:36,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:36,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:36,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:36,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:36,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:36,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:36,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:36,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:36,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:36,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:36,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:36,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:36,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:36,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:36,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:36,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:36,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:36,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:36,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:36,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:36,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:36,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:36,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:36,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:36,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:36,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:36,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:36,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:36,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:36,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:36,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:36,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:36,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:36,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:36,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:36,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:36,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:36,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:36,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:36,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:36,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:36,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:36,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:36,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:36,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:36,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:36,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:36,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:36,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:36,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:36,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:36,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:36,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:36,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:36,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:36,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:36,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:36,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:36,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:36,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:36,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:36,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:36,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:36,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:36,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:36,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:36,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:36,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:36,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:36,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:36,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:36,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:36,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:36,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:36,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:36,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:36,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:36,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:36,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:36,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:36,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:36,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:36,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:36,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:36,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:36,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:36,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:36,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:36,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:36,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:36,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:36,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:36,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:36,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:36,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:36,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:37,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:37,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:37,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:37,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:37,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:37,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:37,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:37,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:37,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:37,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:37,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:37,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:37,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:37,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:37,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:37,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:37,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:37,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:37,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:37,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:37,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:37,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:37,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:37,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:37,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:37,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:37,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:37,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:37,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:37,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:37,079 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:37,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:37,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:37,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:37,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:37,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:37,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:37,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:37,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:37,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:37,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:37,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:37,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:37,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:37,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:37,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:37,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:37,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:37,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:37,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:37,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:37,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:37,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:37,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:37,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:37,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:37,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:37,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:37,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:37,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:37,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:37,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:37,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:37,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:37,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:37,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:37,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:37,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:37,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:37,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:37,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:37,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:37,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:37,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:37,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:37,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:37,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:37,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:37,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:37,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:37,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:37,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:37,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:37,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:37,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:37,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:37,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:37,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:37,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:37,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:37,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:37,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:37,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:37,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:37,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:37,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:37,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:37,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:37,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:37,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:37,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:37,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:37,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:37,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:37,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:37,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:37,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:37,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:37,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:37,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:37,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:37,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:37,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:37,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:37,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:37,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:37,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:37,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:37,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:37,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:37,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:37,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:37,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:37,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:37,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:37,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:37,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:37,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:37,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:37,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:37,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:37,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:37,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:37,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:37,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:37,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:37,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:37,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:37,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:37,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:37,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:37,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:37,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:37,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:37,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:37,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:37,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:37,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:37,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:37,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:37,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:37,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:37,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:37,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:37,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:37,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:37,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:37,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:37,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:37,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:37,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:37,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:37,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:37,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:37,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:37,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:37,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:37,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:37,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:37,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:37,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:37,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:37,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:37,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:37,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:37,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:37,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:37,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:37,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:37,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:37,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:37,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:37,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:37,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:37,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:37,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:37,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:37,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:37,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:37,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:37,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:37,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:37,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:37,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:37,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:37,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:37,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:37,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:37,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:37,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:37,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:37,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:37,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:37,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:37,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:37,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:37,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:37,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:37,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:37,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:37,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:37,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:37,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:37,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:37,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:37,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:37,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:37,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:37,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:37,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:37,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:37,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:37,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:37,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:37,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:37,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:37,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:37,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:37,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:37,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:37,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:37,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:37,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:37,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:37,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:37,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:37,608 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:37,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:37,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:37,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:37,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:37,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:37,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:37,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:37,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:37,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:37,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:37,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:37,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:37,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:37,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:37,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:37,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:37,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:37,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:37,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:37,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:37,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:37,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:37,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:37,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:37,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:37,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:37,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:37,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:37,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:37,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:37,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:37,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:37,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:37,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:37,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:37,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:37,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:37,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:37,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:37,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:37,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:37,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:37,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:37,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:37,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:37,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:37,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:37,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:37,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:37,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:37,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:37,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:37,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:37,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:37,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:37,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:37,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:37,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:37,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:37,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:37,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:37,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:37,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:37,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:37,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:37,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:37,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:37,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:37,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:37,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:37,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:37,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:37,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:37,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:37,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:37,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:37,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:37,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:37,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:37,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:37,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:37,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:37,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:37,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:37,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:37,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:37,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:37,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:37,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:37,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:37,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:37,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:37,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:37,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:37,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:37,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:37,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:37,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:37,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:37,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:37,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:37,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:37,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:37,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:37,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:37,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:37,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:37,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:37,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:37,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:37,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:37,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:37,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:37,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:37,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:37,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:37,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:37,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:37,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:37,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:37,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:37,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:37,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:37,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:37,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:37,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:37,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:37,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:37,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:37,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:37,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:37,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:37,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:37,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:37,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:37,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:37,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:37,943 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:37,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:37,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:37,950 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:37,952 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:37,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:37,957 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:37,959 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:37,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:37,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:37,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:37,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:37,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:37,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:37,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:37,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:37,980 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:37,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:37,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:37,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:37,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:37,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:37,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:37,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:37,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:38,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:38,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:38,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:38,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:38,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:38,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:38,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:38,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:38,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:38,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:38,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:38,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:38,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:38,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:38,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:38,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:38,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:38,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:38,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:38,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:38,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:38,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:38,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:38,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:38,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:38,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:38,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:38,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:38,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:38,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:38,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:38,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:38,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:38,078 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:38,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:38,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:38,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:38,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:38,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:38,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:38,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:38,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:38,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:38,116 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:38,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:38,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:38,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:38,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:38,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:38,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:38,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:38,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:38,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:38,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:38,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:38,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:38,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:38,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:38,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:38,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:38,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:38,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:38,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:38,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:38,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:38,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:38,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:38,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:38,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:38,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:38,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:38,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:38,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:38,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:38,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:38,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:38,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:38,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:38,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:38,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:38,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:38,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:38,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:38,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:38,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:38,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:38,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:38,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:38,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:38,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:38,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:38,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:38,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:38,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:38,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:38,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:38,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:38,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:38,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:38,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:38,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:38,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:38,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:38,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:38,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:38,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:38,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:38,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:38,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:38,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:38,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:38,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:38,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:38,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:38,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:38,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:38,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:38,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:38,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:38,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:38,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:38,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:38,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:38,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:38,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:38,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:38,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:38,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:38,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:38,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:38,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:38,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:38,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:38,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:38,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:38,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:38,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:38,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:38,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:38,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:38,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:38,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:38,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:38,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:38,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:38,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:38,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:38,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:38,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:38,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:38,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:38,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:38,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:38,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:38,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:38,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:38,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:38,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:38,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:38,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:38,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:38,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:38,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:38,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:38,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:38,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:38,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:38,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:38,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:38,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:38,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:38,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:38,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:38,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:38,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:38,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:38,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:38,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:38,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:38,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:38,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:38,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:38,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:38,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:38,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:38,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:38,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:38,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:38,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:38,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:38,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:38,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:38,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:38,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:38,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:38,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:38,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:38,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:38,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:38,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:38,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:38,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:38,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:38,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:38,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:38,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:38,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:38,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:38,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:38,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:38,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:38,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:38,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:38,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:38,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:38,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:38,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:38,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:38,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:38,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:38,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:38,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:38,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:38,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:38,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:38,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:38,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:38,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:38,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:38,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:38,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:38,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:38,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:38,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:38,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:38,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:38,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:38,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:38,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:38,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:38,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:38,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:38,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:38,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:38,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:38,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:38,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:38,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:38,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:38,842 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:17:38,845 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:17:38,851 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:17:38,857 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:17:38,890 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:38,961 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:38,968 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:17:38,971 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:17:38,972 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:17:38,977 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:17:38,980 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:38,983 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:38,989 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:17:38,993 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:17:38,993 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:17:38,998 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,001 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,004 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:17:39,008 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:17:39,008 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:17:39,012 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,015 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,018 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:17:39,083 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:17:39,090 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,096 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,102 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,108 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,113 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,119 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,121 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:17:39,130 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,136 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,141 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,147 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,153 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,159 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,159 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:17:39,161 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:17:39,162 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:17:39,166 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:17:39,168 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:17:39,170 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:17:39,170 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:17:39,173 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:17:39,175 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:17:39,175 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:17:39,178 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:17:39,188 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:39,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:39,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:39,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:39,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:39,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:39,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:39,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:39,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:39,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:39,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:39,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:39,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:39,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:39,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:39,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:39,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:39,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:39,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:39,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:39,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:39,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:39,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:39,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:39,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:39,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:39,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:39,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:39,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:39,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:39,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:39,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:39,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:39,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:39,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:39,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:39,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:39,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:39,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:39,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:39,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:39,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:39,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:39,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:39,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:39,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:39,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:39,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:39,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:39,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:39,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:39,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:39,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:39,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:39,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:39,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:39,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:39,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:39,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:39,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:39,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:39,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:39,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:39,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:39,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:39,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:39,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:39,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:39,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:39,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:39,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:39,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:39,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:39,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:39,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:39,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:39,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:39,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:39,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:39,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:39,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:39,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:39,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:39,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:39,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:39,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:39,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:39,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:39,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:39,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:39,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:39,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:39,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:39,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:39,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:39,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:39,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:39,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:39,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:39,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:39,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:39,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:39,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:39,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:39,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:39,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:39,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:39,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:39,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:39,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:39,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:39,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:39,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:39,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:39,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:39,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:39,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:39,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:39,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:39,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:39,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:39,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:39,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:39,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:39,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:39,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:39,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:39,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:39,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:39,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:39,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:39,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:39,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:39,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:39,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:39,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:39,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:39,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:39,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:39,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:39,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:39,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:39,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:39,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:39,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:39,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:39,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:39,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:39,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:39,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:39,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:39,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:39,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:39,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:39,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:39,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:39,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:39,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:39,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:39,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:39,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:39,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:39,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:39,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:39,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:39,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:39,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:39,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:39,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:39,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:39,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:39,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:39,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:39,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:39,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:39,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:39,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:39,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:39,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:39,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:39,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:39,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:39,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:39,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:39,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:39,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:39,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:39,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:39,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:39,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:39,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:39,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:39,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:39,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:39,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:39,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:39,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:39,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:39,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:39,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:39,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:39,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:39,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:39,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:39,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:39,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:09,152 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,154 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,175 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,176 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,192 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,193 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,245 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,246 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,323 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:19:09,324 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,334 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,336 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,396 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,403 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:09,405 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:09,408 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:09,410 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:09,412 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:09,415 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:09,417 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:09,420 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:09,422 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:09,424 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:09,427 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:09,429 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:09,431 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:09,433 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:09,436 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:09,438 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:09,440 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:09,443 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:09,445 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:09,447 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:09,450 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:09,452 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:09,455 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:09,457 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:09,459 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:09,462 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:09,464 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:09,466 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:09,468 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:09,471 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:09,473 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:09,475 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:09,478 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:09,480 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:09,482 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:09,485 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:09,487 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:09,489 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:09,491 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:09,494 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:09,496 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:09,498 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:09,501 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:09,503 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:09,505 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:09,508 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:09,510 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:09,512 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:09,515 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:09,517 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:09,519 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:09,522 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:09,524 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:09,526 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:09,528 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:09,531 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:09,533 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:09,535 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:09,538 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:09,540 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:09,542 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:09,546 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,665 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,784 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,794 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,984 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:09,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:09,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:10,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:10,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:10,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:10,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:10,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:10,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:10,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:10,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:10,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:10,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:10,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:10,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:10,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:10,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:10,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:10,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:10,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:10,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:10,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:10,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:10,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:10,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:10,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:10,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:10,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:10,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:10,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:10,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:10,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:10,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:10,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:10,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:10,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:10,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:10,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:10,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:10,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:10,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:10,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:10,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:10,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:10,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:10,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:10,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:10,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:10,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:10,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:10,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:10,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:10,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:10,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:10,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:10,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:10,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:10,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:10,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:10,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:10,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:10,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:10,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:10,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:10,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:10,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:10,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:10,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:10,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:10,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:10,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:10,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:10,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:10,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:10,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:10,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:10,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:10,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:10,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:10,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:10,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:10,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:10,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:10,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:10,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:10,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:10,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:10,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:10,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:10,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:10,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:10,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:10,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:10,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:10,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:10,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:10,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:10,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:10,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:10,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:10,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:10,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:10,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:10,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:10,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:10,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:10,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:10,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:10,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:10,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:10,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:10,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:10,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:10,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:10,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:10,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:10,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:10,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:10,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:10,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:10,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:10,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:10,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:10,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:10,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:10,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:10,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:10,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:10,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:10,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:10,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:10,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:10,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:10,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:10,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:10,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:10,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:10,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:10,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:10,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:10,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:10,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:10,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:10,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:10,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:10,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:10,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:10,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:10,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:10,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:10,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:10,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:10,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:10,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:10,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:10,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:10,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:10,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:10,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:10,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:10,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:10,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:10,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:10,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:10,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:10,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:10,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:10,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:10,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:10,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:10,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:10,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:10,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:10,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:10,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:10,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:10,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:10,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:10,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:10,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:10,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:10,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:10,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:10,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:10,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:10,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:10,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:10,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:10,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:10,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:10,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:10,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:10,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:10,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:10,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:10,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:10,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:10,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:10,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:10,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:10,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:10,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:10,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:10,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:10,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:10,606 [DEBUG] django.db.backends: (0.118) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:11,066 [DEBUG] django.db.backends: (0.132) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:11,451 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:11,476 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:11,483 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:11,485 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:11,487 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:11,490 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:11,492 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:11,494 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:11,496 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:11,499 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:11,501 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:11,503 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:11,506 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:11,508 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:11,510 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:11,513 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:11,515 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:11,517 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:11,520 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:11,522 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:11,524 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:11,527 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:11,529 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:11,531 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:11,533 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:11,536 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:11,538 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:11,540 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:11,543 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:11,545 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:11,547 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:11,550 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:11,552 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:11,554 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:11,557 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:11,559 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:11,561 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:11,563 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:11,566 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:11,568 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:11,570 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:11,573 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:11,575 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:11,577 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:11,579 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:11,582 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:11,584 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:11,586 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:11,589 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:11,591 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:11,593 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:11,596 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:11,598 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:11,600 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:11,603 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:11,605 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:11,607 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:11,610 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:11,612 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:11,614 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:11,616 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:11,619 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:11,621 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:11,623 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:11,882 [DEBUG] django.db.backends: (0.063) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:12,198 [DEBUG] django.db.backends: (0.137) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:12,686 [DEBUG] django.db.backends: (0.116) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:13,018 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:13,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:13,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:13,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:13,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:13,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:13,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:13,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:13,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:13,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:13,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:13,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:13,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:13,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:13,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:13,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:13,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:13,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:13,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:13,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:13,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:13,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:13,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:13,082 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:13,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:13,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:13,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:13,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:13,094 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:13,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:13,099 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:13,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:13,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:13,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:13,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:13,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:13,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:13,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:13,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:13,120 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:13,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:13,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:13,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:13,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:13,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:13,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:13,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:13,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:13,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:13,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:13,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:13,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:13,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:13,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:13,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:13,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:13,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:13,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:13,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:13,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:13,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:13,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:13,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:13,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:13,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:13,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:13,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:13,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:13,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:13,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:13,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:13,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:13,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:13,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:13,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:13,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:13,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:13,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:13,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:13,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:13,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:13,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:13,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:13,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:13,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:13,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:13,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:13,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:13,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:13,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:13,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:13,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:13,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:13,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:13,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:13,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:13,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:13,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:13,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:13,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:13,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:13,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:13,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:13,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:13,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:13,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:13,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:13,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:13,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:13,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:13,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:13,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:13,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:13,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:13,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:13,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:13,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:13,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:13,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:13,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:13,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:13,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:13,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:13,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:13,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:13,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:13,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:13,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:13,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:13,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:13,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:13,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:13,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:13,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:13,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:13,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:13,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:13,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:13,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:13,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:13,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:13,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:13,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:13,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:13,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:13,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:13,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:13,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:13,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:13,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:13,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:13,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:13,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:13,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:13,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:13,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:13,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:13,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:13,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:13,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:13,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:13,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:13,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:13,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:13,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:13,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:13,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:13,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:13,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:13,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:13,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:13,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:13,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:13,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:13,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:13,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:13,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:13,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:13,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:13,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:13,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:13,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:13,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:13,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:13,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:13,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:13,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:13,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:13,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:13,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:13,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:13,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:13,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:13,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:13,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:13,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:13,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:13,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:13,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:13,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:13,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:13,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:13,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:13,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:13,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:13,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:13,530 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:13,693 [DEBUG] django.db.backends: (0.151) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,086 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:14,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:14,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:14,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:14,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:14,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:14,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:14,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:14,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:14,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:14,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:14,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:14,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:14,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:14,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:14,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:14,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:14,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:14,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:14,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:14,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:14,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:14,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:14,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:14,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:14,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:14,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:14,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:14,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:14,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:14,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:14,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:14,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:14,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:14,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:14,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:14,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:14,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:14,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:14,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:14,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:14,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:14,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:14,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:14,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:14,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:14,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:14,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:14,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:14,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:14,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:14,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:14,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:14,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:14,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:14,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:14,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:14,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:14,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:14,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:14,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:14,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:14,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:14,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:14,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:14,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:14,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:14,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:14,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:14,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:14,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:14,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:14,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:14,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:14,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:14,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:14,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:14,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:14,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:14,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:14,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:14,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:14,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:14,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:14,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:14,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:14,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:14,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:14,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:14,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:14,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:14,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:14,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:14,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:14,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:14,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:14,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:14,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:14,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:14,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:14,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:14,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:14,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:14,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:14,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:14,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:14,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:14,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:14,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:14,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:14,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:14,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:14,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:14,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:14,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:14,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:14,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:14,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:14,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:14,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:14,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:14,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:14,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:14,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:14,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:14,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:14,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:14,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:14,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:14,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:14,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:14,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:14,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:14,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:14,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:14,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:14,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:14,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:14,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:14,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:14,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:14,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:14,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:14,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:14,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:14,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:14,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:14,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:14,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:14,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:14,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:14,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:14,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:14,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:14,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:14,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:14,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:14,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:14,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:14,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:14,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:14,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:14,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:14,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:14,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:14,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:14,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:14,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:14,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:14,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:14,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:14,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:14,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:14,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:14,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:14,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:14,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:14,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:14,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:14,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:14,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:14,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:14,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:14,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:14,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:14,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:14,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:14,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:14,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:14,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:14,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:14,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:14,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:14,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:14,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:14,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:14,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:14,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:14,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:14,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:14,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:14,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:14,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:14,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:14,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:14,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:14,637 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,769 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,904 [DEBUG] django.db.backends: (0.132) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:15,285 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:15,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:15,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:15,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:15,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:15,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:15,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:15,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:15,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:15,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:15,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:15,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:15,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:15,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:15,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:15,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:15,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:15,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:15,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:15,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:15,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:15,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:15,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:15,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:15,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:15,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:15,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:15,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:15,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:15,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:15,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:15,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:15,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:15,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:15,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:15,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:15,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:15,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:15,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:15,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:15,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:15,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:15,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:15,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:15,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:15,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:15,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:15,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:15,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:15,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:15,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:15,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:15,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:15,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:15,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:15,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:15,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:15,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:15,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:15,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:15,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:15,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:15,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:15,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:15,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:15,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:15,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:15,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:15,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:15,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:15,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:15,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:15,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:15,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:15,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:15,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:15,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:15,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:15,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:15,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:15,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:15,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:15,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:15,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:15,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:15,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:15,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:15,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:15,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:15,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:15,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:15,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:15,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:15,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:15,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:15,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:15,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:15,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:15,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:15,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:15,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:15,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:15,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:15,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:15,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:15,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:15,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:15,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:15,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:15,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:15,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:15,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:15,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:15,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:15,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:15,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:15,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:15,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:15,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:15,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:15,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:15,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:15,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:15,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:15,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:15,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:15,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:15,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:15,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:15,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:15,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:15,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:15,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:15,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:15,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:15,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:15,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:15,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:15,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:15,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:15,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:15,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:15,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:15,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:15,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:15,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:15,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:15,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:15,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:15,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:15,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:15,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:15,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:15,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:15,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:15,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:15,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:15,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:15,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:15,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:15,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:15,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:15,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:15,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:15,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:15,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:15,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:15,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:15,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:15,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:15,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:15,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:15,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:15,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:15,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:15,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:15,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:15,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:15,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:15,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:15,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:15,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:15,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:15,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:15,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:15,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:15,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:15,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:15,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:15,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:15,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:15,753 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:15,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:15,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:15,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:15,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:15,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:15,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:15,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:15,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:15,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:15,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:15,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:15,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:15,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:15,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:15,796 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:15,819 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:15,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:15,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:15,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:15,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:15,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:15,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:15,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:15,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:15,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:15,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:15,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:15,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:15,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:15,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:15,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:15,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:15,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:15,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:15,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:15,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:15,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:15,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:15,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:15,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:15,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:15,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:15,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:15,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:15,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:15,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:15,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:15,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:15,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:15,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:15,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:15,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:15,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:15,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:15,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:15,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:15,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:15,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:15,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:15,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:15,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:15,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:15,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:15,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:15,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:15,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:15,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:15,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:15,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:15,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:15,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:15,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:15,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:15,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:15,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:15,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:15,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:15,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:15,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:15,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:15,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:15,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:15,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:15,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:15,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:15,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:15,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:15,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:15,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:15,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:16,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:16,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:16,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:16,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:16,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:16,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:16,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:16,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:16,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:16,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:16,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:16,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:16,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:16,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:16,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:16,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:16,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:16,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:16,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:16,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:16,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:16,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:16,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:16,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:16,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:16,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:16,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:16,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:16,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:16,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:16,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:16,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:16,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:16,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:16,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:16,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:16,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:16,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:16,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:16,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:16,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:16,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:16,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:16,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:16,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:16,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:16,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:16,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:16,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:16,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:16,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:16,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:16,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:16,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:16,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:16,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:16,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:16,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:16,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:16,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:16,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:16,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:16,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:16,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:16,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:16,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:16,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:16,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:16,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:16,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:16,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:16,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:16,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:16,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:16,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:16,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:16,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:16,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:16,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:16,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:16,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:16,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:16,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:16,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:16,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:16,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:16,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:16,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:16,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:16,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:16,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:16,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:16,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:16,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:16,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:16,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:16,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:16,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:16,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:16,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:16,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:16,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:16,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:16,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:16,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:16,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:16,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:16,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:16,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:16,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:16,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:16,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:16,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:16,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:16,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:16,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:16,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:16,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:16,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:16,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:16,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:16,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:16,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:16,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:16,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:16,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:16,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:16,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:16,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:16,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:16,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:16,321 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:16,392 [DEBUG] django.db.backends: (0.061) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:16,562 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:16,576 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:16,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:16,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:16,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:16,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:16,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:16,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:16,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:16,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:16,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:16,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:16,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:16,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:16,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:16,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:16,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:16,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:16,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:16,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:16,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:16,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:16,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:16,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:16,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:16,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:16,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:16,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:16,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:16,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:16,652 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:16,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:16,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:16,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:16,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:16,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:16,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:16,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:16,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:16,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:16,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:16,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:16,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:16,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:16,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:16,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:16,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:16,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:16,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:16,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:16,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:16,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:16,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:16,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:16,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:16,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:16,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:16,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:16,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:16,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:16,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:16,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:16,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:16,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:16,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:16,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:16,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:16,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:16,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:16,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:16,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:16,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:16,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:16,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:16,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:16,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:16,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:16,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:16,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:16,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:16,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:16,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:16,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:16,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:16,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:16,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:16,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:16,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:16,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:16,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:16,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:16,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:16,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:16,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:16,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:16,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:16,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:16,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:16,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:16,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:16,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:16,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:16,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:16,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:16,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:16,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:16,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:16,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:16,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:16,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:16,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:16,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:16,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:16,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:16,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:16,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:16,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:16,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:16,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:16,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:16,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:16,873 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:16,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:16,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:16,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:16,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:16,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:16,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:16,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:16,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:16,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:16,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:16,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:16,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:16,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:16,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:16,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:16,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:16,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:16,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:16,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:16,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:16,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:16,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:16,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:16,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:16,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:16,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:16,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:16,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:16,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:16,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:16,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:16,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:16,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:16,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:16,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:16,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:16,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:16,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:16,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:16,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:16,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:16,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:16,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:16,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:16,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:16,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:16,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:16,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:16,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:16,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:16,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:16,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:16,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:16,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:17,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:17,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:17,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:17,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:17,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:17,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:17,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:17,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:17,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:17,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:17,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:17,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:17,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:17,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:17,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:17,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:17,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:17,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:17,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:17,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:17,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:17,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:17,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:17,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:17,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:17,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:17,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:17,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:17,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:17,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:17,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:17,079 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:17,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:17,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:17,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:17,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:17,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:17,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:17,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:17,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:17,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:17,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:17,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:17,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:17,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:17,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:17,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:17,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:17,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:17,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:17,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:17,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:17,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:17,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:17,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:17,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:17,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:17,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:17,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:17,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:17,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:17,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:17,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:17,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:17,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:17,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:17,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:17,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:17,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:17,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:17,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:17,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:17,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:17,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:17,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:17,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:17,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:17,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:17,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:17,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:17,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:17,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:17,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:17,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:17,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:17,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:17,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:17,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:17,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:17,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:17,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:17,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:17,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:17,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:17,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:17,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:17,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:17,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:17,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:17,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:17,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:17,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:17,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:17,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:17,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:17,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:17,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:17,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:17,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:17,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:17,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:17,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:17,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:17,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:17,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:17,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:17,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:17,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:17,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:17,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:17,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:17,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:17,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:17,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:17,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:17,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:17,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:17,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:17,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:17,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:17,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:17,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:17,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:17,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:17,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:17,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:17,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:17,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:17,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:17,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:17,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:17,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:17,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:17,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:17,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:17,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:17,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:17,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:17,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:17,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:17,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:17,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:17,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:17,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:17,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:17,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:17,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:17,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:17,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:17,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:17,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:17,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:17,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:17,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:17,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:17,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:17,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:17,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:17,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:17,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:17,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:17,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:17,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:17,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:17,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:17,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:17,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:17,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:17,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:17,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:17,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:17,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:17,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:17,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:17,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:17,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:17,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:17,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:17,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:17,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:17,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:17,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:17,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:17,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:17,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:17,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:17,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:17,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:17,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:17,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:17,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:17,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:17,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:17,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:17,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:17,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:17,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:17,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:17,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:17,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:17,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:17,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:17,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:17,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:17,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:17,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:17,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:17,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:17,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:17,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:17,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:17,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:17,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:17,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:17,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:17,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:17,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:17,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:17,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:17,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:17,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:17,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:17,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:17,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:17,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:17,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:17,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:17,609 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:17,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:17,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:17,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:17,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:17,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:17,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:17,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:17,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:17,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:17,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:17,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:17,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:17,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:17,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:17,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:17,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:17,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:17,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:17,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:17,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:17,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:17,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:17,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:17,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:17,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:17,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:17,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:17,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:17,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:17,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:17,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:17,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:17,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:17,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:17,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:17,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:17,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:17,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:17,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:17,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:17,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:17,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:17,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:17,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:17,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:17,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:17,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:17,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:17,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:17,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:17,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:17,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:17,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:17,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:17,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:17,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:17,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:17,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:17,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:17,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:17,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:17,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:17,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:17,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:17,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:17,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:17,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:17,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:17,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:17,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:17,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:17,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:17,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:17,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:17,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:17,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:17,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:17,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:17,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:17,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:17,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:17,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:17,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:17,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:17,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:17,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:17,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:17,821 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:17,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:17,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:17,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:17,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:17,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:17,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:17,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:17,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:17,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:17,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:17,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:17,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:17,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:17,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:17,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:17,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:17,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:17,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:17,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:17,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:17,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:17,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:17,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:17,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:17,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:17,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:17,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:17,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:17,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:17,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:17,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:17,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:17,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:17,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:17,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:17,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:17,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:17,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:17,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:17,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:17,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:17,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:17,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:17,932 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:17,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:17,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:17,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:17,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:17,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:17,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:17,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:17,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:17,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:17,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:17,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:17,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:17,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:17,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:17,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:17,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:17,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:17,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:17,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:17,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:17,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:17,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:17,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:17,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:17,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:17,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:17,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:17,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:18,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:18,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:18,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:18,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:18,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:18,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:18,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:18,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:18,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:18,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:18,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:18,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:18,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:18,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:18,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:18,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:18,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:18,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:18,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:18,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:18,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:18,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:18,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:18,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:18,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:18,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:18,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:18,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:18,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:18,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:18,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:18,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:18,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:18,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:18,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:18,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:18,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:18,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:18,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:18,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:18,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:18,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:18,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:18,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:18,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:18,120 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:18,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:18,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:18,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:18,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:18,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:18,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:18,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:18,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:18,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:18,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:18,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:18,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:18,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:18,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:18,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:18,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:18,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:18,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:18,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:18,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:18,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:18,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:18,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:18,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:18,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:18,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:18,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:18,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:18,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:18,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:18,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:18,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:18,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:18,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:18,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:18,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:18,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:18,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:18,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:18,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:18,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:18,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:18,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:18,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:18,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:18,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:18,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:18,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:18,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:18,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:18,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:18,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:18,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:18,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:18,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:18,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:18,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:18,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:18,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:18,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:18,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:18,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:18,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:18,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:18,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:18,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:18,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:18,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:18,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:18,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:18,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:18,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:18,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:18,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:18,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:18,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:18,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:18,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:18,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:18,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:18,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:18,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:18,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:18,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:18,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:18,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:18,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:18,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:18,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:18,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:18,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:18,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:18,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:18,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:18,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:18,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:18,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:18,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:18,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:18,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:18,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:18,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:18,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:18,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:18,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:18,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:18,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:18,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:18,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:18,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:18,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:18,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:18,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:18,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:18,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:18,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:18,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:18,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:18,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:18,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:18,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:18,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:18,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:18,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:18,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:18,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:18,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:18,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:18,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:18,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:18,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:18,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:18,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:18,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:18,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:18,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:18,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:18,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:18,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:18,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:18,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:18,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:18,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:18,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:18,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:18,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:18,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:18,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:18,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:18,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:18,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:18,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:18,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:18,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:18,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:18,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:18,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:18,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:18,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:18,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:18,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:18,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:18,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:18,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:18,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:18,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:18,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:18,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:18,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:18,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:18,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:18,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:18,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:18,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:18,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:18,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:18,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:18,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:18,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:18,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:18,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:18,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:18,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:18,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:18,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:18,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:18,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:18,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:18,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:18,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:18,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:18,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:18,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:18,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:18,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:18,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:18,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:18,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:18,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:18,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:18,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:18,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:18,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:18,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:18,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:18,836 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:19:18,840 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:19:18,846 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:19:18,851 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:19:18,884 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:18,953 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:18,959 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:19:18,962 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:19:18,963 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:19:18,968 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:19:18,971 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,973 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,979 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:19:18,982 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:19:18,983 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:19:18,987 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,990 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,992 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:19:18,996 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:19:18,996 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:19:19,000 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:19,002 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:19,005 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:19:19,069 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:19:19,076 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,082 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,087 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,093 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,099 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,104 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,106 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:19:19,115 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,121 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,126 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,132 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,138 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,143 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,144 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:19:19,146 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:19:19,147 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:19:19,150 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:19:19,152 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:19:19,154 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:19:19,155 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:19:19,157 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:19:19,159 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:19:19,160 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:19:19,162 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:19:19,172 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:19,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:19,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:19,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:19,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:19,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:19,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:19,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:19,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:19,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:19,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:19,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:19,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:19,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:19,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:19,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:19,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:19,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:19,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:19,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:19,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:19,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:19,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:19,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:19,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:19,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:19,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:19,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:19,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:19,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:19,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:19,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:19,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:19,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:19,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:19,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:19,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:19,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:19,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:19,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:19,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:19,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:19,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:19,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:19,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:19,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:19,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:19,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:19,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:19,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:19,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:19,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:19,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:19,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:19,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:19,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:19,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:19,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:19,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:19,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:19,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:19,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:19,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:19,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:19,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:19,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:19,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:19,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:19,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:19,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:19,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:19,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:19,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:19,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:19,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:19,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:19,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:19,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:19,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:19,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:19,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:19,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:19,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:19,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:19,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:19,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:19,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:19,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:19,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:19,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:19,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:19,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:19,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:19,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:19,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:19,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:19,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:19,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:19,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:19,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:19,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:19,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:19,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:19,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:19,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:19,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:19,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:19,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:19,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:19,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:19,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:19,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:19,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:19,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:19,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:19,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:19,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:19,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:19,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:19,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:19,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:19,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:19,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:19,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:19,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:19,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:19,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:19,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:19,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:19,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:19,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:19,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:19,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:19,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:19,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:19,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:19,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:19,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:19,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:19,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:19,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:19,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:19,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:19,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:19,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:19,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:19,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:19,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:19,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:19,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:19,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:19,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:19,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:19,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:19,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:19,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:19,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:19,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:19,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:19,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:19,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:19,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:19,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:19,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:19,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:19,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:19,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:19,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:19,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:19,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:19,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:19,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:19,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:19,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:19,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:19,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:19,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:19,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:19,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:19,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:19,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:19,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:19,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:19,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:19,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:19,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:19,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:19,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:19,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:19,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:19,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:19,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:19,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:19,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:19,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:19,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:19,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:19,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:19,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:19,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:19,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:19,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:19,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:19,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:19,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:19,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:33,362 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,364 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,386 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,387 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,403 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,404 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,459 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,460 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,529 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,530 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,537 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,538 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,600 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:33,607 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:33,610 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:33,612 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:33,614 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:33,617 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:33,619 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:33,621 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:33,624 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:33,626 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:33,629 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:33,631 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:33,633 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:33,636 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:33,638 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:33,640 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:33,643 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:33,645 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:33,647 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:33,650 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:33,652 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:33,654 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:33,657 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:33,659 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:33,662 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:33,664 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:33,666 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:33,669 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:33,671 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:33,674 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:33,676 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:33,678 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:33,681 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:33,683 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:33,686 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:33,688 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:33,690 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:33,693 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:33,695 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:33,697 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:33,700 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:33,702 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:33,705 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:33,707 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:33,709 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:33,712 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:33,714 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:33,716 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:33,719 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:33,721 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:33,723 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:33,726 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:33,728 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:33,730 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:33,733 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:33,735 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:33,738 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:33,740 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:33,742 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:33,745 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:33,747 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:33,749 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:33,753 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:33,875 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:33,993 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:34,003 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:34,194 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:34,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:34,207 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:34,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:34,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:34,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:34,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:34,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:34,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:34,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:34,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:34,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:34,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:34,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:34,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:34,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:34,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:34,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:34,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:34,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:34,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:34,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:34,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:34,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:34,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:34,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:34,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:34,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:34,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:34,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:34,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:34,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:34,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:34,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:34,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:34,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:34,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:34,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:34,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:34,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:34,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:34,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:34,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:34,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:34,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:34,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:34,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:34,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:34,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:34,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:34,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:34,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:34,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:34,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:34,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:34,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:34,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:34,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:34,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:34,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:34,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:34,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:34,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:34,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:34,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:34,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:34,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:34,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:34,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:34,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:34,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:34,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:34,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:34,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:34,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:34,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:34,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:34,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:34,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:34,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:34,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:34,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:34,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:34,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:34,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:34,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:34,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:34,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:34,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:34,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:34,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:34,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:34,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:34,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:34,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:34,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:34,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:34,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:34,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:34,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:34,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:34,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:34,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:34,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:34,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:34,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:34,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:34,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:34,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:34,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:34,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:34,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:34,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:34,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:34,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:34,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:34,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:34,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:34,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:34,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:34,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:34,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:34,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:34,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:34,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:34,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:34,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:34,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:34,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:34,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:34,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:34,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:34,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:34,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:34,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:34,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:34,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:34,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:34,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:34,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:34,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:34,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:34,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:34,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:34,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:34,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:34,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:34,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:34,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:34,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:34,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:34,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:34,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:34,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:34,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:34,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:34,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:34,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:34,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:34,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:34,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:34,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:34,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:34,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:34,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:34,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:34,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:34,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:34,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:34,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:34,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:34,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:34,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:34,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:34,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:34,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:34,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:34,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:34,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:34,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:20:01,181 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:20:01,205 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() diff --git a/meta/admin.py b/meta/admin.py index 5d944cd3..7f21eb6b 100644 --- a/meta/admin.py +++ b/meta/admin.py @@ -1,13 +1,7 @@ # -*- coding: utf-8 -*- -from django.shortcuts import render_to_response -from django.http import HttpResponseRedirect, HttpResponse -from django.core.context_processors import csrf +from django.http import HttpResponseRedirect from django.conf import settings -from django.forms.formsets import BaseFormSet, formset_factory -from django.forms.models import modelformset_factory -from django.contrib.contenttypes.models import ContentType -from django.contrib.auth.decorators import login_required -#models and forms +# models and forms from models import MetaSetting from forms import MetaForm, MetaFilterForm from functions.admin_views import AdminListView, AdminView @@ -45,7 +39,7 @@ class MetaView(AdminView): data['keywords_%s' % code] = trans_obj.keywords data['h1_%s' % code] = trans_obj.h1 - form =form_class(initial=data) + form = form_class(initial=data) return form else: return form_class() diff --git a/meta/admin_urls.py b/meta/admin_urls.py index a545ff76..f93ae2c7 100644 --- a/meta/admin_urls.py +++ b/meta/admin_urls.py @@ -1,16 +1,15 @@ # -*- coding: utf-8 -*- -from django.conf.urls import patterns, include, url -from admin import MetaListView, MetaView -from .views import CreateSeoText, SeoTextList, EditSeoText, DeleteSeoText +from django.conf.urls import patterns, url +from views import CreateSeoText, SeoTextList, EditSeoText, DeleteSeoText +from .admin import MetaListView, MetaView -urlpatterns = patterns('conference.admin', +urlpatterns = patterns('', url(r'^seo/new/$', CreateSeoText.as_view(), name='seo_new'), url(r'^seo/all/$', SeoTextList.as_view(), name='seo_all'), url(r'^seo/edit/(?P\d{1,5})/$', EditSeoText.as_view(), name='seo_edit'), url(r'^seo/delete/(?P\d{1,5})/$', DeleteSeoText.as_view(), name='seo_delete'), url(r'^all/$', MetaListView.as_view()), - #url(r'^change/(?P.*)/$', 'conference_change'), - url(r'^(?P.*)/$', MetaView.as_view()), + url(r'^(?P\d{1,6})/$', MetaView.as_view()), url(r'^$', MetaView.as_view()), ) \ No newline at end of file diff --git a/meta/forms.py b/meta/forms.py index eb93f28a..fd3c009a 100644 --- a/meta/forms.py +++ b/meta/forms.py @@ -1,9 +1,11 @@ # -*- coding: utf-8 -*- from django import forms from django.conf import settings -from models import MetaSetting +from models import MetaSetting, SeoText from functions.translate import fill_with_signal from functions.admin_forms import AdminFilterForm +from ckeditor.widgets import CKEditorWidget +from hvad.forms import TranslatableModelForm class MetaForm(forms.Form): @@ -14,7 +16,7 @@ class MetaForm(forms.Form): create dynamical translated fields fields """ super(MetaForm, self).__init__(*args, **kwargs) - #creates translated forms example: name_ru, name_en + # creates translated forms example: name_ru, name_en # len(10) is a hack for detect if settings.LANGUAGES is not configured it return all langs if len(settings.LANGUAGES) in range(10): for lid, (code, name) in enumerate(settings.LANGUAGES): @@ -44,17 +46,14 @@ class MetaForm(forms.Form): fill_with_signal(MetaSetting, meta, data) meta.save() + class MetaFilterForm(AdminFilterForm): model = MetaSetting -from .models import SeoText -from ckeditor.widgets import CKEditorWidget -from hvad.forms import TranslatableModelForm - class SeoTextForm(TranslatableModelForm): - + # lang = forms.ChoiceField(choices=settings.LANGUAGES) class Meta: model = SeoText - fields = ['url', 'title', 'body'] - widgets = {'body':CKEditorWidget} \ No newline at end of file + fields = ['url', 'title', 'page_title', 'description', 'body'] + widgets = {'body': CKEditorWidget} diff --git a/meta/models.py b/meta/models.py index 0bd6bdc0..98c6c5cd 100644 --- a/meta/models.py +++ b/meta/models.py @@ -3,9 +3,15 @@ from django.db import models from django.utils import translation from django.db.models.signals import post_save from django.utils.translation import ugettext_lazy as _ +from django.conf import settings +from django.core.urlresolvers import reverse_lazy +from django.core.cache import cache from hvad.models import TranslatableModel, TranslatedFields, TranslationManager from pymorphy.django_conf import default_morph as morph from functions.signal_handlers import post_save_handler +import copy + + # additional funcs MONTHES = {'jan': _(u'январе'), 'feb': _(u'феврале'), 'mar': _(u'марте'), 'apr': _(u'апреле'), @@ -118,62 +124,70 @@ post_save.connect(post_save_handler, sender=MetaSetting) # SEO - tests # -from django.db import models -from hvad.models import TranslatableModel, TranslatedFields -from django.conf import settings -from django.core.urlresolvers import reverse_lazy -from django.core.cache import cache - - class SeoTextManager(TranslationManager): cache_time = 120 + def cache_get(self, *args, **kwargs): url = kwargs.get('url') lang = kwargs.get('lang')[:2] or translation.get_language()[:2] key = 'seo_text_cache' result = cache.get(key) if result: - return result.get(lang+'_' + url) + return result.get("%s_%s" % (lang, url)) qs = list(SeoText.objects.language('all')) - value_dict = {obj.language_code+'_'+obj.url:obj for obj in qs} + value_dict = {obj.language_code+'_'+obj.url: obj for obj in qs} cache.set(key, value_dict, self.cache_time) - return value_dict.get(lang+'_'+url) - + return value_dict.get("%s_%s" % (lang, url)) class SeoText(TranslatableModel): - - url = models.CharField(max_length=50, unique=True) + url = models.CharField(max_length=50, unique=True, verbose_name=u"URL: www.expomap.ru") translations = TranslatedFields( - title=models.CharField(max_length=255), - body=models.TextField() + title=models.CharField(max_length=255, verbose_name=u"Заголовок"), + page_title=models.CharField(max_length=255, verbose_name=u"Тайтл страницы"), + description=models.CharField(max_length=1000, verbose_name=u"Дескрипшн"), + body=models.TextField(verbose_name=u"Текст") ) objects = SeoTextManager() + def __init__(self, *args, **kwargs): + super(SeoText, self).__init__(*args, **kwargs) + self.cache_fields = ['title', 'body', 'page_title', 'description'] + self.is_new = True + def get_absolute_url(self): - return reverse_lazy('seo_all') + return self.url def save(self, *args, **kwargs): - super(SeoText,self).save(*args, **kwargs) - - all_field_names = list(self._translated_field_names) - clear_f_n = [] - for field_name in all_field_names: - if field_name not in ['master', 'master_id', u'id', 'language_code']: - clear_f_n.append(field_name) - field_items = {field_name:getattr(self, field_name) for field_name in clear_f_n} - - langs = [lan[0] for lan in settings.LANGUAGES] - for lang in langs: - if lang not in self.get_available_languages(): - self.translate(lang) - for field in clear_f_n: - setattr(self, field, field_items.get(field, '')) - super(SeoText,self).save(*args, **kwargs) - return SeoText + super(SeoText, self).save(*args, **kwargs) + self.initial_language = 'ru' + + new_values = {field: getattr(self, field) for field in self.cache_fields} + langs = [code for code, _ in settings.LANGUAGES] + if self.is_new: + for lang in langs: + if lang not in self.get_available_languages(): + self.translate(lang) + for key, value in new_values.items(): + setattr(self, key, value) + self.save_translations(self) + else: + translations = {obj.language_code:obj for obj in list(self.translations.all())} + for lang in langs: + if lang is not self.initial_language: + tr = translations[lang] + for key, value in new_values.items(): + #if u'%s' % getattr(self, key) is u'' or getattr(self, key) is u'%s' % self.var_cache[key]: + setattr(tr, key, value) + tr.save() + + self.lazy_translation_getter(self.initial_language) + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = False + return self def __unicode__(self): return self.url diff --git a/meta/views.py b/meta/views.py index 28d30eba..81db7390 100644 --- a/meta/views.py +++ b/meta/views.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals - +from . import settings +from django.views.generic import CreateView, UpdateView, DeleteView, ListView from django.core.exceptions import ImproperlyConfigured from models import MetaSetting - -from . import settings +from .forms import SeoTextForm, SeoText class Meta(object): @@ -189,10 +189,6 @@ class MetadataMixin(object): return context -from django.views.generic import CreateView, UpdateView, DeleteView, ListView -from .models import SeoText -from .forms import SeoTextForm - class CreateSeoText(CreateView): form_class = SeoTextForm @@ -212,6 +208,7 @@ class EditSeoText(UpdateView): template_name = "admin/meta/create_seo_text.html" + class DeleteSeoText(DeleteView): model = SeoText template_name = "admin/meta/seo_confirm_delete.html" diff --git a/proj/admin_urls.py b/proj/admin_urls.py index 47bbfeaf..c66d75f1 100644 --- a/proj/admin_urls.py +++ b/proj/admin_urls.py @@ -34,6 +34,7 @@ urlpatterns = required( url(r'^settings/', include('settings.admin_urls')), url(r'^meta/', include('meta.admin_urls')), url(r'^import_xls/', include('import_xls.admin_urls')), + url(r'^specialist_catalog/', include('specialist_catalog.admin_urls')), url(r'^language/add/', 'directories.admin.language_add'), url(r'^currency/add/', 'directories.admin.currency_add'), diff --git a/proj/decorators.py b/proj/decorators.py index f3f48c8d..149b9358 100644 --- a/proj/decorators.py +++ b/proj/decorators.py @@ -1,16 +1,16 @@ -from functools import wraps - -from django.template import RequestContext -from django.shortcuts import render_to_response - - -def render_to(tpl): - def decorator(func): - @wraps(func) - def wrapper(request, *args, **kwargs): - out = func(request, *args, **kwargs) - if isinstance(out, dict): - out = render_to_response(tpl, out, RequestContext(request)) - return out - return wrapper +from functools import wraps + +from django.template import RequestContext +from django.shortcuts import render_to_response + + +def render_to(tpl): + def decorator(func): + @wraps(func) + def wrapper(request, *args, **kwargs): + out = func(request, *args, **kwargs) + if isinstance(out, dict): + out = render_to_response(tpl, out, RequestContext(request)) + return out + return wrapper return decorator \ No newline at end of file diff --git a/proj/settings.py b/proj/settings.py index 14caba29..863a6fa8 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -242,7 +242,6 @@ SOCIAL_AUTH_INACTIVE_USER_URL = '/inactive-user/' SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True -from social.pipeline.social_auth import social_details SOCIAL_AUTH_PIPELINE = ( 'social.pipeline.social_auth.social_details', 'social.pipeline.social_auth.social_uid', @@ -354,6 +353,8 @@ INSTALLED_APPS = ( 'password_reset', # reset password 'social.apps.django_app.default', # social auth 'core', + 'wizard', + 'specialist_catalog', ) diff --git a/proj/urls.py b/proj/urls.py index 085e5bf1..836154ed 100644 --- a/proj/urls.py +++ b/proj/urls.py @@ -29,6 +29,8 @@ sitemaps = { handler404 = 'proj.views.error404' urlpatterns = patterns('', + url(r'^wizard/', include('wizard.urls')), + url(r'^acquire_email/$', 'registration.backends.default.views.acquire_email', name = 'acquire_email'), url(r'^rss/', include('core.urls')), #url(r'^__debug__/', include(debug_toolbar.urls)), url(r'^sitemap-(?P
.+)\.xml$', views.sitemap, {'sitemaps': sitemaps}), @@ -53,6 +55,7 @@ urlpatterns = patterns('', url(r'^', include('company.urls')), url(r'^', include('photoreport.urls')), url(r'^', include('article.urls')), + url(r'^specialist/', include("specialist_catalog.urls")), url(r'^country/', include('country.urls')), url(r'^city/', include('city.urls')), url(r'^organiser/', include('organiser.urls')), diff --git a/proj/views.py b/proj/views.py index cfb06577..24883ed3 100644 --- a/proj/views.py +++ b/proj/views.py @@ -26,6 +26,7 @@ def clear_slashes(str_): str_ = str_[:-1] return str_ + def add_seo(request): url = request.path lang = get_language() @@ -38,6 +39,7 @@ def add_seo(request): seo_text = None return seo_text + def expo_context(request): banners_themes = [24, 34, 4] banner_tags = [141, 142, 143, 156, 206, 231, 232, 390, 391, 400, 457, 500, 536, 537, 539, 457, 500, 686, 715, 765, diff --git a/service/urls.py b/service/urls.py index 10efb29a..5b3055a5 100644 --- a/service/urls.py +++ b/service/urls.py @@ -4,7 +4,7 @@ from views import ServiceView, CallBackListView, VisitListView, TranslationListV ParticipationListView, RemoteListView,TicketsListView, Thanks urlpatterns = patterns('', - url(r'service/thanks/$', Thanks.as_view()), + url(r'service/thanks/$', Thanks.as_view(), name = "service_thanks"), url(r'service/com_rek/(?P.*)/(?P.*)/$', 'service.views.advertise'), url(r'service/com_rek/$', 'service.views.advertise'), url(r'service/(?P.*)/$', ServiceView.as_view()), diff --git a/service/views.py b/service/views.py index 9fbc0586..a88e3766 100644 --- a/service/views.py +++ b/service/views.py @@ -46,7 +46,6 @@ class ServiceView(MetadataMixin, FormView): def form_valid(self, form): order = form.save(commit=False) order.save() - #messages.success(self.request, _(u'Ваш запрос был успешно отправлен')) return HttpResponseRedirect(self.success_url) def get_context_data(self, **kwargs): diff --git a/specialist_catalog/__init__.py b/specialist_catalog/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/specialist_catalog/admin_urls.py b/specialist_catalog/admin_urls.py new file mode 100644 index 00000000..df5e4ea6 --- /dev/null +++ b/specialist_catalog/admin_urls.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import url, patterns +from .views import * + +urlpatterns = patterns('', + url(r'^specialist/new/$', SpecialistCreateView.as_view(), name='specialist_new'), + url(r'^specialist/all/$', SpecialistListView.as_view(), name='specialist_all'), + url(r'^specialist/edit/(?P\d{1,4})/$', SpecialistUpdateView.as_view(), name='specialist_edit'), + url(r'^specialist/delete/(?P\d{1,4})/$', SpecialistDeleteView.as_view(), name='specialist_delete'), + url(r'^catalog/new/$', CatalogCreateView.as_view(), name='catalog_new'), + url(r'^catalog/all/$', CatalogListView.as_view(), name='catalog_all'), + url(r'^catalog/city/$', CatalogCityView.as_view(), name='catalog_city'), + url(r'^catalog/country/$', CatalogCountryView.as_view(), name='catalog_country'), + url(r'^catalog/edit/(?P\d{1,4})/$', CatalogUpdateView.as_view(), name='catalog_edit'), + url(r'^catalog/delete/(?P\d{1,4})/$', CatalogDeleteView.as_view(), name='catalog_delete'), + url(r'^catalog/(?P\d{1,4})/add_feedback/$', FeedbackCreateView.as_view(), name='feedback_new'), + #url(r'^catalog/(?P\d{1,4})/feedbacks/$', FeedbackListView.as_view(), name='feedback_all'), + url(r'^catalog/(?P\d{1,4})/feedback/(?P\d{1,4})/$', FeedbackUpdateView.as_view(), name='feedback_edit'), + url(r'^feedback/delete/(?P\d{1,4})/$', FeedbackDeleteView.as_view(), name='feedback_delete'), +) \ No newline at end of file diff --git a/specialist_catalog/forms.py b/specialist_catalog/forms.py new file mode 100644 index 00000000..a96c43ce --- /dev/null +++ b/specialist_catalog/forms.py @@ -0,0 +1,64 @@ +# -*- coding: utf-8 -*- +from django import forms +from hvad.forms import TranslatableModelForm +from .models import Specialist, SpecialistCatalog, Feedback, City, Country +from ckeditor.widgets import CKEditorWidget +from django.utils.translation import get_language + +country_choices = [(c.id, c.name) for c in Country.objects.all()] +lang_code = get_language()[:2] + +default_text = u"Планируете посетить выставку в %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики в %s" + + +class SpecialistCatalogForm(TranslatableModelForm): + + class Meta: + model = SpecialistCatalog + fields = ['price', 'currency', 'logo_preview', 'main_descr', 'place_photo', + 'specialists', 'city', 'country', 'type', 'title', 'benefits', 'big_cities'] + widgets = { + 'type': forms.Select(choices=(('1', 'Country'), ('2', 'City'))), + 'city': forms.HiddenInput(attrs={'id': 'id_city'}), + 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}), + 'main_descr': CKEditorWidget, + 'benefits': CKEditorWidget, + 'big_cities': CKEditorWidget, + } + + def save(self, commit=True): + place = self.cleaned_data.get('city') or self.cleaned_data.get('country') + place_inflect = place.inflect or place.name + if not self.cleaned_data['title']: + self.cleaned_data['title'] = default_title % place_inflect + if not self.cleaned_data['main_descr']: + self.cleaned_data['main_descr'] = default_text % (place_inflect, place_inflect) + return super(SpecialistCatalogForm, self).save(commit=True) + + +class SpecialistForm(forms.ModelForm): + + class Meta: + model = Specialist + fields = ['name','country', 'city', 'photo', 'languages'] + widgets = { + 'city': forms.HiddenInput(attrs={'id': 'id_city'}), + 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}) + } + + +class FeedbackForm(forms.ModelForm): + + class Meta: + model = Feedback + fields = ['company', 'name', 'text', 'logo', 'catalog'] + widgets = { + 'text':CKEditorWidget + } \ No newline at end of file diff --git a/specialist_catalog/management/__init__.py b/specialist_catalog/management/__init__.py new file mode 100644 index 00000000..b29e46c3 --- /dev/null +++ b/specialist_catalog/management/__init__.py @@ -0,0 +1 @@ +__author__ = 'dart_vaider' diff --git a/specialist_catalog/management/commands/__init__.py b/specialist_catalog/management/commands/__init__.py new file mode 100644 index 00000000..b29e46c3 --- /dev/null +++ b/specialist_catalog/management/commands/__init__.py @@ -0,0 +1 @@ +__author__ = 'dart_vaider' diff --git a/specialist_catalog/management/commands/create_city_page.py b/specialist_catalog/management/commands/create_city_page.py new file mode 100644 index 00000000..7a6a3138 --- /dev/null +++ b/specialist_catalog/management/commands/create_city_page.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- + +from django.core.management.base import BaseCommand +from city.models import City +from specialist_catalog.models import SpecialistCatalog + +default_text = u"Планируете посетить выставку в %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики в %s" +default_logo = "specialist_catalog/logo_preview/default_logo.jpg" +default_cities = u"
  • Лондон
  • Киев
  • Барселона
" + + +class Command(BaseCommand): + def handle(self, *args, **options): + cities = list(City.objects.language('ru').order_by('id')) + for cty in cities: + name = cty.inflect or cty.name + sc = SpecialistCatalog( + type=2, + country=cty.country, + city=cty, + title=default_title % name, + main_descr=default_text % (name, name), + logo_preview=default_logo, + big_cities=default_cities, + ) + sc.save() + print cty.url, " -> ", cty.country.url diff --git a/specialist_catalog/management/commands/create_country_page.py b/specialist_catalog/management/commands/create_country_page.py new file mode 100644 index 00000000..5f039274 --- /dev/null +++ b/specialist_catalog/management/commands/create_country_page.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +from django.core.management.base import BaseCommand +from country.models import Country +from specialist_catalog.models import SpecialistCatalog + +default_text = u"Планируете посетить выставку в %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики в %s" +default_logo = "specialist_catalog/logo_preview/ukraine.gif" +default_cities = u"
  • Лондон
  • Киев
  • Барселона
" +lang = 'ru' + + +class Command(BaseCommand): + def handle(self, *args, **options): + countries = Country.objects.language('ru').order_by('name') + for cntry in countries: + name = cntry.inflect or cntry.name + sc = SpecialistCatalog( + type='1', + country=cntry, + title=default_title % name, + main_descr=default_text % (name, name), + logo_preview=default_logo, + big_cities=default_cities, + ) + sc.save() + print "created for: %s" % cntry.url diff --git a/specialist_catalog/models.py b/specialist_catalog/models.py new file mode 100644 index 00000000..32fd0e35 --- /dev/null +++ b/specialist_catalog/models.py @@ -0,0 +1,97 @@ +# -*- coding: utf-8 -*- +from django.db import models +from django.conf import settings +from hvad.models import TranslatableModel, TranslatedFields, TranslationManager +from city.models import City +from country.models import Country +from django.core.urlresolvers import reverse_lazy +from django.utils.translation import get_language +import copy + +# types of catalog +_country = 1 +_city = 2 + + +class Specialist(models.Model): + name = models.CharField(max_length=255, verbose_name=u"Полное имя", blank=False) + languages = models.CharField(max_length=255, verbose_name=u"Языки") + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город", blank=True) + country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") + photo = models.ImageField(verbose_name=u"Фото", upload_to="specialist_catalog/specialist_photo/", blank=True) + + def __unicode__(self): + return u"%s" % self.name + + +class SpecialistCatalog(TranslatableModel): + price = models.IntegerField(verbose_name=u"Цена", default=200) + currency = models.CharField(max_length=255, verbose_name=u"Валюта", default=u"EUR") + logo_preview = models.ImageField(verbose_name=u"Логотип", blank=True, upload_to='specialist_catalog/logo_preview/') + place_photo = models.ImageField(verbose_name=u"Фото для города", blank=True, upload_to='specialist_catalog/place_photo/') + specialists = models.ManyToManyField(Specialist, verbose_name=u"Специалисты", blank=True) + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город", unique=True, blank=True) + country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна", blank=False) + type = models.PositiveSmallIntegerField(verbose_name=u"Тип(Страна/Город)", default=2) + + translations = TranslatedFields( + title=models.CharField(max_length=255, verbose_name=u"Заголовок"), + main_descr=models.CharField(max_length=1000, verbose_name=u"Краткое описание"), + benefits=models.CharField(max_length=2000, verbose_name=u"Преимущества"), + big_cities=models.TextField(verbose_name=u"Крупные города") + ) + + def __init__(self, *args, **kwargs): + super(SpecialistCatalog, self).__init__(*args, **kwargs) + self.cache_fields = ['title', 'main_descr', 'benefits'] + self.is_new = True + + def get_absolute_url(self): + global _country, _city + if self.type == _country: + return reverse_lazy('spec_catalog_country', kwargs={'slug': self.country.url}) + return reverse_lazy('spec_catalog_city', kwargs={'slug': self.city.url}) + + def save(self, *args, **kwargs): + super(SpecialistCatalog, self).save(*args, **kwargs) + self.initial_language = get_language()[:2] or 'ru' + + new_values = {field: getattr(self, field) for field in self.cache_fields} + langs = [code for code, _ in settings.LANGUAGES] + if self.is_new: + for lang in langs: + if lang not in self.get_available_languages(): + self.translate(lang) + for key, value in new_values.items(): + setattr(self, key, value) + self.save_translations(self) + else: + translations = {obj.language_code: obj for obj in list(self.translations.all())} + for lang in langs: + if lang is not self.initial_language: + tr = translations[lang] + for key, value in new_values.items(): + #if u'%s' % getattr(tr, key) is u'%s' % self.var_cache[key]: + setattr(tr, key, value) + tr.save() + + self.lazy_translation_getter(self.initial_language) + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = False + return self + + def __unicode__(self): + return self.title + + +class Feedback(models.Model): + company = models.CharField(max_length=255, verbose_name=u"Название компании") + name = models.CharField(max_length=100, verbose_name=u"Имя") + text = models.CharField(max_length=5000, verbose_name=u"Текст отзыва") + logo = models.ImageField(verbose_name=u"Логотип компании", upload_to='specialist_catalog/feedback_logo/', blank=True) + catalog = models.ForeignKey(SpecialistCatalog, verbose_name=u"Страница", blank=False) + + def __unicode__(self): + return "Feedback from %s" % self.company + + diff --git a/specialist_catalog/tests.py b/specialist_catalog/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/specialist_catalog/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/specialist_catalog/urls.py b/specialist_catalog/urls.py new file mode 100644 index 00000000..a79bb14b --- /dev/null +++ b/specialist_catalog/urls.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import url, patterns +from .views import CatalogDetailedView + +urlpatterns = patterns('', + url(r'^city/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'city'}, name="spec_catalog_city"), + url(r'^country/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'country'}, name="spec_catalog_country"), +) \ No newline at end of file diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py new file mode 100644 index 00000000..36167693 --- /dev/null +++ b/specialist_catalog/views.py @@ -0,0 +1,171 @@ +# -*- coding: utf-8 -*- +from django.views.generic import CreateView, UpdateView, DeleteView, ListView, FormView, DetailView +from django.views.generic.detail import SingleObjectMixin +from .forms import * +from django.core.urlresolvers import reverse_lazy +from django.conf import settings +from django.shortcuts import get_object_or_404 +from service.order_forms import TranslationForm +from django.http import HttpResponseRedirect +from django.utils.translation import get_language + +# =========== ADMIN VIEWS =========== + +# Specialist views + + +class SpecialistCreateView(CreateView): + form_class = SpecialistForm + model = Specialist + template_name = 'admin/specialist/specialist_new.html' + success_url = reverse_lazy("specialist_all") + + +class SpecialistListView(ListView): + model = Specialist + template_name = 'admin/specialist/specialist_all.html' + paginate_by = settings.ADMIN_PAGINATION + + +class SpecialistUpdateView(UpdateView): + form_class = SpecialistForm + model = Specialist + template_name = 'admin/specialist/specialist_new.html' + success_url = reverse_lazy("specialist_all") + + def get_form(self, form_class): + form = super(SpecialistUpdateView, self).get_form(form_class) + form.fields['city'].widget.attrs['data-init-text'] = self.object.city.name + return form + + +class SpecialistDeleteView(DeleteView): + model = Specialist + template_name = 'admin/specialist/specialist_confirm_delete.html' + success_url = reverse_lazy("specialist_all") + + +# Catalog views + + +class CatalogCreateView(CreateView): + form_class = SpecialistCatalogForm + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_new.html' + success_url = reverse_lazy("catalog_all") + + +class CatalogListView(ListView): + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_all.html' + paginate_by = settings.ADMIN_PAGINATION + + +class CatalogCityView(ListView): + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_all.html' + paginate_by = settings.ADMIN_PAGINATION + + def get_queryset(self): + qs = super(CatalogCityView, self).get_queryset() + return qs.filter(type=2) + + +class CatalogCountryView(ListView): + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_all.html' + paginate_by = settings.ADMIN_PAGINATION + + def get_queryset(self): + qs = super(CatalogCountryView, self).get_queryset() + return qs.filter(type=1) + + +class CatalogUpdateView(UpdateView): + form_class = SpecialistCatalogForm + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_new.html' + success_url = reverse_lazy("catalog_all") + + def get_form(self, form_class): + form = super(CatalogUpdateView, self).get_form(form_class) + if self.object.type is 2: # city + form.fields['city'].widget.attrs['data-init-text'] = self.object.city.name + return form + + +class CatalogDeleteView(DeleteView): + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_confirm_delete.html' + success_url = reverse_lazy("catalog_all") + + +# Feedback views + + +class FeedbackCreateView(CreateView): + form_class = FeedbackForm + model = Feedback + template_name = 'admin/specialist/feedback_new.html' + success_url = reverse_lazy("catalog_all") + + def get_initial(self): + catalog = get_object_or_404(SpecialistCatalog, pk=self.kwargs.get('catalog_pk')) + return {'catalog': catalog} + + +class FeedbackUpdateView(UpdateView): + form_class = FeedbackForm + model = Feedback + template_name = 'admin/specialist/feedback_new.html' + success_url = reverse_lazy("catalog_all") + + def get_initial(self): + catalog = get_object_or_404(SpecialistCatalog, pk=self.kwargs.get('catalog_pk')) + return {'catalog': catalog} + + +class FeedbackDeleteView(DeleteView): + model = Feedback + template_name = 'admin/specialist/feedback_confirm_delete.html' + success_url = reverse_lazy("catalog_all") + + +# ========= CLIENT VIEWS ============ + +lang = get_language()[:2] + + +class CatalogDetailedView(SingleObjectMixin, FormView): + model = SpecialistCatalog + form_class = TranslationForm + template_name = "client/specialist_catalog/catalog_detailed.html" + success_url = reverse_lazy("service_thanks") + + def get_object(self, queryset=None): + if self.kwargs.get('type') is "country": + obj = self.model.objects.language(lang).get(country__url=self.kwargs.get('slug')) + else: + obj = self.model.objects.language(lang).get(city__url=self.kwargs.get('slug')) + self.object = obj + return obj + + def get_context_data(self, **kwargs): + self.get_object() + context = super(CatalogDetailedView, self).get_context_data(**kwargs) + context['object'] = self.object + return context + + def form_valid(self, form): + order = form.save(commit=False) + order.save() + return HttpResponseRedirect(self.success_url) + + def get_initial(self): + obj = self.get_object() + init = {} + init['country'] = obj.country.name + if self.kwargs.get('type') is "city": + init['city'] = obj.city.name + return init + diff --git a/static/custom_js/place_city_ajax.js b/static/custom_js/place_city_ajax.js index 716ff370..12cbd744 100644 --- a/static/custom_js/place_city_ajax.js +++ b/static/custom_js/place_city_ajax.js @@ -14,6 +14,5 @@ $('#id_city').attr('disabled', false); }); - }); }); diff --git a/static/custom_js/specialist.js b/static/custom_js/specialist.js new file mode 100644 index 00000000..560d85a8 --- /dev/null +++ b/static/custom_js/specialist.js @@ -0,0 +1,93 @@ +/** + * Created by dev on 07.09.2015. + */ +$(document).ready(function () { + $('select').select2({ + width: 'element', + allowClear: true + }); + + $('#id_country').change(function () { + $.get( + "/admin/ajax_city/", {'id': $(this).val()}, function (j) { + + $('#id_city').html(j); + $('#id_city').attr('disabled', false); + + }); + }); + + + $('#id_city').select2({ + placeholder: "Город", + width: 300, + ajax: { + + url: "/admin/city/search/", + dataType: "json", + quietMillis: 200, + + data: function (term, page, country) { + var country = $('#id_country').val(); + return { + term: term, + page: page, + country: country + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var id = $(element).val(); + var text = $(element).attr('data-init-text'); + callback({id: id, text: text}); + + } + + }); + + + // displaying uploaded photo + + function handleFileSelect(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + + document.getElementById('id_photo').addEventListener('change', handleFileSelect, false); + document.getElementById('id_logo').addEventListener('change', handleFileSelect, false); + console.log("hello from new specialist view.js"); +}); \ No newline at end of file diff --git a/static/custom_js/specialist_catalog.js b/static/custom_js/specialist_catalog.js new file mode 100644 index 00000000..cdc3ef55 --- /dev/null +++ b/static/custom_js/specialist_catalog.js @@ -0,0 +1,120 @@ +/** + * Created by dev on 07.09.2015. + */ +$(document).ready(function () { + $('select').select2({ + width: 'element', + allowClear: true + }); + + $('#id_country').change(function () { + $.get( + "/admin/ajax_city/", {'id': $(this).val()}, function (j) { + + $('#id_city').html(j); + $('#id_city').attr('disabled', false); + + }); + }); + + + $('#id_city').select2({ + placeholder: "Город", + width: 300, + ajax: { + + url: "/admin/city/search/", + dataType: "json", + quietMillis: 200, + + data: function (term, page, country) { + var country = $('#id_country').val(); + return { + term: term, + page: page, + country: country + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var id = $(element).val(); + var text = $(element).attr('data-init-text'); + callback({id: id, text: text}); + + } + + }); + + + // displaying uploaded photo + + function handleFileSelect1(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list_picture').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + function handleFileSelect2(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list_logo').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + + document.getElementById('id_place_photo').addEventListener('change', handleFileSelect1, false); + document.getElementById('id_logo_preview').addEventListener('change', handleFileSelect2, false); + console.log("hello from new catalog view.js"); +}); \ No newline at end of file diff --git a/static/custom_js/wizard.js b/static/custom_js/wizard.js new file mode 100644 index 00000000..796e2b8f --- /dev/null +++ b/static/custom_js/wizard.js @@ -0,0 +1,167 @@ +/** + * Created by dev on 07.09.2015. + */ +$(document).ready(function () { + $('select').select2({ + width: 'element', + allowClear: true + }); + + $('#id_country').change(function () { + $.get( + "/admin/ajax_city/", {'id': $(this).val()}, function (j) { + + $('#id_city').html(j); + $('#id_city').attr('disabled', false); + + }); + }); + $('#id_place').select2({ + placeholder:"Место проведения", + widht: 400 + }); + + $('#id_city').select2({ + placeholder: "Город", + width: 300, + ajax: { + + url: "/admin/city/search/", + dataType: "json", + quietMillis: 200, + + data: function (term, page, country) { + var country = $('#id_country').val() + return { + term: term, + page: page, + country: country + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var id = $(element).val(); + var text = $(element).attr('data-init-text'); + callback({id: id, text: text}); + + } + + }); + $('#id_0-periodic').select2({ + placeholder: "Периодичность", + width: '350px' + }); + + + $('#id_tag').select2({ + placeholder: "Теги", + width: '350px', + multiple: true, + ajax: { + + url: "/admin/theme/tag/search/", + dataType: "json", + quietMillis: 200, + multiple: true, + + data: function (term, page, theme) { + var theme = $('#id_theme').serialize().replace(/0-theme/g, 'theme'); + return { + term: term, + page: page, + theme: theme + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var data = []; + $(element.val().split(",")).each(function (i) { + var item = this.split(':'); + data.push({ + id: item[0], + text: item[1] + }); + }); + callback(data); + + } + + }); + // end selects + /* + */ + // theme change + + $('#id_theme').change(function () { + $.get( + "/admin/ajax_tag/", {'id': $(this).serialize().replace(/0-theme/g, 'theme')}, function (data) { + var optionValues = []; + var getValues = []; + var selectedValues = []; + //push values sended from server in array + $.each(data, function (i, elem) { + getValues.push(elem[0].toString()) + }); + //delete options if they aren't in getvalues + //otherwise push it in array + //also push in array already selected values + $('#id_tag option').each(function () { + var check = $.inArray($(this), getValues); + if ($(this).is(':selected')) { + selectedValues.push($(this).val()) + } + if (check == -1) { + $(this).remove() + } + else { + optionValues.push($(this).val()); + } + }); + //generate new options + //old options unchanged + var html = ''; + $.each(data, function (i, elem) { + var check = $.inArray(elem[0].toString(), optionValues); + + if (check == -1) { + html += ''; + } + }); + $('#id_tag').append(html); + //select previous selected values + $('#id_tag option').each(function () { + var check = $.inArray($(this).val(), selectedValues) + if (check != -1) { + $(this).attr('selected', 'selected'); + } + }); + });//end get + });//end change + console.log("hello from wizard.js"); + }); \ No newline at end of file diff --git a/templates/admin/expobanner/main_list.html b/templates/admin/expobanner/main_list.html index 0175e392..a06a2411 100644 --- a/templates/admin/expobanner/main_list.html +++ b/templates/admin/expobanner/main_list.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'admin/base.html' %} {% block body %} @@ -8,7 +8,14 @@
{% block list_table %} - Добавить выставку + +
+
+ Только опубликование +
+
@@ -36,5 +43,13 @@ {# pagination #} {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} - + {% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/main_stat.html b/templates/admin/expobanner/main_stat.html index 1e1a5bb6..6c593bb7 100644 --- a/templates/admin/expobanner/main_stat.html +++ b/templates/admin/expobanner/main_stat.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'admin/base.html' %} {% load static %} {% block scripts %} @@ -27,6 +27,14 @@ + + + + + + + + {% with stats=stats %} {% for stat in stats %} diff --git a/templates/admin/expobanner/paid_list.html b/templates/admin/expobanner/paid_list.html index 81402128..f4996058 100644 --- a/templates/admin/expobanner/paid_list.html +++ b/templates/admin/expobanner/paid_list.html @@ -8,8 +8,13 @@
{% block list_table %} - Добавить выставку -
Всего{{ all.views }}{{ all.clicks }}{{ all.unique_views}}{{ all.unique_clicks }}
+ Добавить выставку +
+
+ Только опубликование + +
+
@@ -34,5 +39,13 @@ {# pagination #} {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} - + {% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/paid_stat.html b/templates/admin/expobanner/paid_stat.html index b47791c5..86bbc620 100644 --- a/templates/admin/expobanner/paid_stat.html +++ b/templates/admin/expobanner/paid_stat.html @@ -27,6 +27,13 @@ + + + + + + + {% with stats=object.paidstat_set.all %} {% for stat in stats %} diff --git a/templates/admin/expobanner/top_list.html b/templates/admin/expobanner/top_list.html index 78642de7..13110d32 100644 --- a/templates/admin/expobanner/top_list.html +++ b/templates/admin/expobanner/top_list.html @@ -9,6 +9,11 @@
{% block list_table %} Добавить выставку +
+
+ Только активние + +
Выставка
За весь период{{ all.official }}{{ all.ticket }}{{ all.participation}}{{ all.catalog }}
@@ -32,5 +37,13 @@ {# pagination #} {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} - + {% endblock %} \ No newline at end of file diff --git a/templates/admin/meta/create_seo_text.html b/templates/admin/meta/create_seo_text.html index 3bf4c337..04182684 100644 --- a/templates/admin/meta/create_seo_text.html +++ b/templates/admin/meta/create_seo_text.html @@ -1,63 +1,79 @@ -{% extends 'base.html' %} -{% load static %} -{# Displays article form #} - - {% block scripts %} - - - {# selects #} - - - - {# ajax #} - - - - {% endblock %} - -{% block body %} - {{ request.LANGUAGE_CODE }} - {% csrf_token %} -
-
-
-

Основная информация

-
-
- {# url/slug #} -
- -
- {{ form.langs }} - {{ form.url }} - {{ form.url.errors }} -
-
- {# title #} -
- -
- {{ form.title }} - {{ form.title.errors }} -
-
- {# body #} -
- -
- {{ form.body }} - {{ form.body.errors }} -
-
-
-
- -
- - - -
-
- - -{% endblock %} +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + + + {# selects #} + + + + {# ajax #} + + + + {% endblock %} + +{% block body %} + {{ request.LANGUAGE_CODE }} + {% csrf_token %} +
+
+
+

Основная информация

+
+
+ {# url/slug #} +
+ +
+ {{ form.langs }} + {{ form.url }} + {{ form.url.errors }} +
+
+ {# title #} +
+ +
+ {{ form.title }} + {{ form.title.errors }} +
+
+ {# page title #} +
+ +
+ {{ form.page_title }} + {{ form.page_title.errors }} +
+
+ {# description #} +
+ +
+ {{ form.description }} + {{ form.description.errors }} +
+
+ {# body #} +
+ +
+ {{ form.body }} + {{ form.body.errors }} +
+
+
+
+ +
+ + + +
+
+ + +{% endblock %} diff --git a/templates/admin/meta/seo_confirm_delete.html b/templates/admin/meta/seo_confirm_delete.html index aa997c38..90cc492c 100644 --- a/templates/admin/meta/seo_confirm_delete.html +++ b/templates/admin/meta/seo_confirm_delete.html @@ -1,11 +1,11 @@ -{% extends 'base.html' %} -{% block sidebar %}{% endblock %} -{% block body %} -{% csrf_token %} -
-

Вы точно хотите удалить seo-текст "{{ object.title }}" для страницы ?

- - Нет -
- +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +{% csrf_token %} +
+

Вы точно хотите удалить seo-текст "{{ object.title }}" для страницы ?

+ + Нет +
+ {% endblock %} \ No newline at end of file diff --git a/templates/admin/page/new_page.html b/templates/admin/page/new_page.html index ac08c1b4..8fed1258 100644 --- a/templates/admin/page/new_page.html +++ b/templates/admin/page/new_page.html @@ -1,90 +1,90 @@ -{% extends 'base.html' %} -{% load static %} -{# Displays article form #} - - {% block scripts %} - - - {# selects #} - - - - {# ajax #} - - - - {% endblock %} - -{% block body %} - -{# Uses multilang.html template for translated fields #} - {% csrf_token %} -
-
-
-

Основная информация

-
-
- {# url/slug #} - {% if request.path == '/admin/page/new/' %} -
- -
- {{ form.langs }} - {{ form.url }} - {{ form.url.errors }} -
-
- {% endif %} - {# h1 #} -
- -
- {{ form.h1 }} - {{ form.h1.errors }} -
-
- {# title #} -
- -
- {{ form.title }} - {{ form.title.errors }} -
-
- {# description #} -
- -
- {{ form.descriptions }} - {{ form.descriptions.errors }} -
-
- {# keywords #} -
- -
- {{ form.keywords }} - {{ form.keywords.errors }} -
-
- {# body #} -
- -
- {{ form.body }} - {{ form.body.errors }} -
-
-
-
- -
- - - -
-
- - -{% endblock %} +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + + + {# selects #} + + + + {# ajax #} + + + + {% endblock %} + +{% block body %} + +{# Uses multilang.html template for translated fields #} + {% csrf_token %} +
+
+
+

Основная информация

+
+
+ {# url/slug #} +{# {% if request.path == '/admin/page/new/' %}#} +
+ +
+ {{ form.url }} + {{ form.url.errors }} +
+
+{# {% endif %}#} + + {# h1 #} +
+ +
+ {{ form.h1 }} + {{ form.h1.errors }} +
+
+ {# title #} +
+ +
+ {{ form.title }} + {{ form.title.errors }} +
+
+ {# description #} +
+ +
+ {{ form.descriptions }} + {{ form.descriptions.errors }} +
+
+ {# keywords #} +
+ +
+ {{ form.keywords }} + {{ form.keywords.errors }} +
+
+ {# body #} +
+ +
+ {{ form.body }} + {{ form.body.errors }} +
+
+
+
+ +
+ + + +
+
+ + +{% endblock %} diff --git a/templates/admin/page/page_confirm_delete.html b/templates/admin/page/page_confirm_delete.html index c957256f..22558761 100644 --- a/templates/admin/page/page_confirm_delete.html +++ b/templates/admin/page/page_confirm_delete.html @@ -1,11 +1,11 @@ -{% extends 'base.html' %} -{% block sidebar %}{% endblock %} -{% block body %} -{% csrf_token %} -
-

Вы точно хотите удалить страницу "{{ object }}"?

- - Нет -
- +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +{% csrf_token %} +
+

Вы точно хотите удалить страницу "{{ object }}"?

+ + Нет +
+ {% endblock %} \ No newline at end of file diff --git a/templates/admin/page/page_template_view.html b/templates/admin/page/page_template_view.html new file mode 100644 index 00000000..214b7ba0 --- /dev/null +++ b/templates/admin/page/page_template_view.html @@ -0,0 +1,14 @@ +{% extends 'client/base_catalog.html' %} +{% load static %} +{% load i18n %} +{% load template_filters %} + +{% block title %}{{ object.title }} {% endblock %} + +{% block content_list %} +
+ {{ object.h1 }} +
+
{{ object.body }}
+ +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/catalog_all.html b/templates/admin/specialist/catalog_all.html new file mode 100644 index 00000000..e249848c --- /dev/null +++ b/templates/admin/specialist/catalog_all.html @@ -0,0 +1,64 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% block body %} +
+
+

Все каталоги специалистов

+
+
+
+ + + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + + + + {% endfor %} + +
  Заголовок{% if request.path == "/admin/specialist_catalog/catalog/city/" %}Город{% elif request.path == "/admin/specialist_catalog/catalog/country/" %}Страна{% else %}Страна/Город{% endif %}Количество специалистовLink 
+ {% thumbnail item.logo_preview "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.title }}{% if item.type == 1%}{{ item.country.name }}{% else %}{{ item.city.name }}{% endif %}{{ item.specialists.count }}Заценить + + Изменить + + + + Удалить + +
+ + Хочу еще один +
+ + + +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/catalog_confirm_delete.html b/templates/admin/specialist/catalog_confirm_delete.html new file mode 100644 index 00000000..6dd1ae8e --- /dev/null +++ b/templates/admin/specialist/catalog_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
{% csrf_token %} +
+

Вы точно хотите удалить "{{ object.title }}" ?

+ + Нет +
+
+{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/catalog_new.html b/templates/admin/specialist/catalog_new.html new file mode 100644 index 00000000..266a9dfe --- /dev/null +++ b/templates/admin/specialist/catalog_new.html @@ -0,0 +1,203 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + + {# selects for city and country #} + + + + + {% endblock %} + +{% block body %} +
{% csrf_token %} +
+
+
+

Добавление каталога специалистов(переводчиков)

+
+
+ {# title #} +
+ +
+ {{ form.title }} + {{ form.title.errors }} +
+
+ {# main_descr #} +
+ +
+ {{ form.main_descr }} + {{ form.main_descr.errors }} +
+
+ + {# benefits #} +
+ +
+ {{ form.benefits }} + {{ form.benefits.errors }} +
+
+ {# big_cities #} +
+ +
+ {{ form.big_cities }} + {{ form.big_cities.errors }} +
+
+ + {# price #} +
+ +
+ {{ form.price }}{{ form.currency.label }}{{ form.currency }} + {{ form.price.errors }} +
+
+ + {# type #} +
+ +
+ {{ form.type }} + {{ form.type.errors }} +
+
+ + {# country #} +
+ +
+ {{ form.country }} + {{ form.country.errors }} +
+
+ {# city #} +
+ +
+ {{ form.city }} + {{ form.city.errors }} +
+
+ + {# specialists #} +
+ +
+ {{ form.specialists }}Довавить + {{ form.specialists.errors }} +
+
+ {# logo_preview #} +
+ +
+ {{ form.logo_preview }} + {{ form.logo_preview.errors }} +
+
+ {# place_photo #} +
+ +
+ {{ form.place_photo }} + {{ form.place_photo.errors }} +
+
+ +
+
+ + +
+
+ + + {% if object.feedback_set.all %} + {% with object.feedback_set.all as feedbacks %} + +
+
+

Отзывы для текущего каталога

+
+
+ + + + + + + + + + + + + {% for item in feedbacks %} + + + + + + + + + + + {% endfor %} + +
ЛоготипИмяКомпанияТекст 
+ {% thumbnail item.logo "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.name }}{{ item.company }}{{ item.text }} + + Изменить + + + + Удалить + +
+ + Хочу еще один +
+ + +
+ {% endwith %} + {% elif object.id %} + Отзывов еще нет, + + Добавить + {% endif %} +{% endblock %} diff --git a/templates/admin/specialist/feedback_all.html b/templates/admin/specialist/feedback_all.html new file mode 100644 index 00000000..2d40605f --- /dev/null +++ b/templates/admin/specialist/feedback_all.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% block body %} +
+
+

Отзывы для %(calatolog)

+
+
+ + + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + + + {% endfor %} + +
Логотип ИмяКомпанияТекст 
+ {% thumbnail item.logo "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.name }}{{ item.company }}{{ item.text }} + + Изменить + + + + Удалить + +
+ + Хочу еще один +
+ + +
+{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/feedback_confirm_delete.html b/templates/admin/specialist/feedback_confirm_delete.html new file mode 100644 index 00000000..2314e117 --- /dev/null +++ b/templates/admin/specialist/feedback_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
{% csrf_token %} +
+

Вы точно хотите удалить "{{ object.name }}" ?

+ + Нет +
+
+{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/feedback_new.html b/templates/admin/specialist/feedback_new.html new file mode 100644 index 00000000..404651b1 --- /dev/null +++ b/templates/admin/specialist/feedback_new.html @@ -0,0 +1,79 @@ +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + {# selects for city and country #} + + + + + {% endblock %} + +{% block body %} +
{% csrf_token %} +
+
+
+

Добавление отз ва

+
+
+ {# name #} +
+ +
+ {{ form.name }} + {{ form.name.errors }} +
+
+ {# company #} +
+ +
+ {{ form.company }} + {{ form.company.errors }} +
+
+ {# text #} +
+ +
+ {{ form.text }} + {{ form.text.errors }} +
+
+ {# catalog #} +
+ +
+ {{ form.catalog }} + {{ form.catalog.errors }} +
+
+ {# logo #} +
+ +
+ {{ form.logo }} + {{ form.logo.errors }} +
+
+ +
+
+ +
+ + + +
+
+
+ +{% endblock %} diff --git a/templates/admin/specialist/specialist_all.html b/templates/admin/specialist/specialist_all.html new file mode 100644 index 00000000..7899d553 --- /dev/null +++ b/templates/admin/specialist/specialist_all.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% block body %} +
+
+

Список специалистов(переводчиков)

+
+
+ + + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + + + {% endfor %} + +
Фото ИмяГородЯзыки 
+ {% thumbnail item.photo "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.name }}{{ item.city.name }}{{ item.languages }} + + Изменить + + + + Удалить + +
+ + Хочу еще +
+ + +
+{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/specialist_confirm_delete.html b/templates/admin/specialist/specialist_confirm_delete.html new file mode 100644 index 00000000..4cb4b98c --- /dev/null +++ b/templates/admin/specialist/specialist_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
{% csrf_token %} +
+

Вы точно хотите удалить "{{ object.name }}" ?

+ + Нет +
+
+{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/specialist_new.html b/templates/admin/specialist/specialist_new.html new file mode 100644 index 00000000..7835b82c --- /dev/null +++ b/templates/admin/specialist/specialist_new.html @@ -0,0 +1,79 @@ +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + {# selects for city and country #} + + + + + {% endblock %} + +{% block body %} +
{% csrf_token %} +
+
+
+

Добавление специалиста(переводчика)

+
+
+ {# name #} +
+ +
+ {{ form.name }} + {{ form.name.errors }} +
+
+ {# languages #} +
+ +
+ {{ form.languages }} + {{ form.languages.errors }} +
+
+ {# country #} +
+ +
+ {{ form.country }} + {{ form.country.errors }} +
+
+ {# city #} +
+ +
+ {{ form.city }} + {{ form.city.errors }} +
+
+ {# photo #} +
+ +
+ {{ form.photo }} + {{ form.photo.errors }} +
+
+ +
+
+ +
+ + + +
+
+
+ +{% endblock %} diff --git a/templates/client/404_test.html b/templates/client/404_test.html new file mode 100644 index 00000000..bded0e78 --- /dev/null +++ b/templates/client/404_test.html @@ -0,0 +1,31 @@ +{% extends 'base_catalog.html' %} + +{% block content_list %} + +
+

Запрашиваемая страница не найдена

+
+
+ 404: +

Возможно у нее изменился адрес или же она была удалена.
Воспользуйтесь поиском по названию, расширенной формой поиска или каталогом событий.

+
+
+
+

Каталог выставок

+ +
+
+
+

Каталог конференций

+ +
+
+{% endblock %} \ No newline at end of file diff --git a/templates/client/accounts/email_required.html b/templates/client/accounts/email_required.html index 24300f36..bcacaaeb 100644 --- a/templates/client/accounts/email_required.html +++ b/templates/client/accounts/email_required.html @@ -1,7 +1,7 @@ -{% extends 'client/blank.html' %} -{% block main_part %} -
{% csrf_token %} - {{ form }} - -
+{% extends 'client/blank.html' %} +{% block main_part %} +
{% csrf_token %} + {{ form }} + +
{% endblock %} \ No newline at end of file diff --git a/templates/client/blank.html b/templates/client/blank.html index 594550da..ee88ffa4 100644 --- a/templates/client/blank.html +++ b/templates/client/blank.html @@ -21,7 +21,7 @@ This template include basic anf main styles and js files, - {% include 'includes/meta.html' %} + {% include 'client/includes/meta.html' %} @@ -45,6 +45,9 @@ This template include basic anf main styles and js files, + {% block head_scripts %} + + {% endblock %} {% if request.GET.debug == '1' %} {% else %} diff --git a/templates/client/includes/header.html b/templates/client/includes/header.html index 911ea5a4..69659e51 100644 --- a/templates/client/includes/header.html +++ b/templates/client/includes/header.html @@ -11,11 +11,10 @@
-
{% if user.is_authenticated %} - {% if user.organiser %} - + {% if user.is_organiser %} + {% endif %} {% endif %} diff --git a/templates/client/includes/meta.html b/templates/client/includes/meta.html index 1b71a4e2..6b692da7 100644 --- a/templates/client/includes/meta.html +++ b/templates/client/includes/meta.html @@ -2,7 +2,10 @@ {% load i18n %} -{% if meta %} +{% if seotext %} + {% if seotext.description %}{% meta 'description' seotext.description %}{% endif %} + {% if seotext.page_title %}{{ seotext.page_title }}{% endif %} +{% elif meta %} {% if meta.description %}{% meta 'description' meta.description %}{% endif %} {% if meta.keywords %}{% meta_list 'keywords' meta.keywords %}{% endif %} {% if meta.title %}{{ meta.title }}{% endif %} diff --git a/templates/client/includes/seo_text.html b/templates/client/includes/seo_text.html index 2a29c7eb..9ed0dbf8 100644 --- a/templates/client/includes/seo_text.html +++ b/templates/client/includes/seo_text.html @@ -1,3 +1,3 @@ -
-

{{ object.title }}

{{ object.body|safe }} +
+

{{ object.title }}

{{ object.body|safe }}
\ No newline at end of file diff --git a/templates/client/page/page_view.html b/templates/client/page/page_view.html index d233787f..6b5f9894 100644 --- a/templates/client/page/page_view.html +++ b/templates/client/page/page_view.html @@ -1,19 +1,19 @@ -{% extends 'client/base_catalog.html' %} -{% load static %} -{% load i18n %} - -{% block bread_scrumbs %} - -{% endblock %} - -{% block page_title %} -

{{ object.h1 }}

-{% endblock %} -{% block page_body %} - - {{ object.body|safe|striptags}} - +{% extends 'client/base_catalog.html' %} +{% load static %} +{% load i18n %} + +{% block bread_scrumbs %} + +{% endblock %} + +{% block page_title %} +

{{ object.h1 }}

+{% endblock %} +{% block page_body %} + + {{ object.body|safe|striptags}} + {% endblock %} \ No newline at end of file diff --git a/templates/client/specialist_catalog/catalog_detailed.html b/templates/client/specialist_catalog/catalog_detailed.html new file mode 100644 index 00000000..b0c079da --- /dev/null +++ b/templates/client/specialist_catalog/catalog_detailed.html @@ -0,0 +1,326 @@ +{% extends "client/base_catalog.html" %} +{% load static %} +{% load thumbnail %} +{% load i18n %} + +{% block head_scripts %} + +{% endblock %} + +{% block page_body%} +
+ +
+ +
+ + +
+
+
{{ object.title }}
+
+ +
+ {{ object.main_descr }} +
+
+ +
+ +{# #} +
+ {% thumbnail object.place_photo "957x400" crop="center" as im %} + + {% endthumbnail %} +
+ +{# #} +{#
#} +{# #} +{# #} +{#
#} +{# #} +{#
#} +
+ +
+
+ {{ object.big_cities }} +
+

Крупные города:

+ {{ object.big_cities }} +
+ +
+ +
+
+

Коротко о наших преимуществах:

+
+ {{ object.benefits|safe }} +
+
+
+ +{# ----------------------------------------- FORM ----------------------------------------------#} +
+
{% csrf_token %} + +
+ +
+ +
{% trans 'Информация о переводе' %}
+ +
+ +
+ {{ form.languages }} + +
+ +
+ {{ form.themes }} + + +
+
+ +
+ +
+ {{ form.days }} {% trans 'дней' %} +
+ +
+ {{ form.hours }} {% trans 'часов в день' %} +
+
+ +
+ +
+
+
+ + {{ form.fr }} +
+ {{ form.fr.errors }} + +
+
+
+ + {{ form.to }} +
+ {{ form.to.errors }} + +
+
+
+
+
+ +
+ +
+ +
+ +
{% trans 'Ваши контактные данные' %}
+ {% if not object %} +
+
+ {{ form.event }} +
+ {{ form.event.errors }} + +
+
+
+ {% endif %} + +
+
+ {{ form.person_inf }} +
+ {{ form.person_inf.errors }} + +
+
+
+ +
+
+ {{ form.country }} +
+ {{ form.country.errors }} + +
+
+ +
+ {{ form.city }} +
+ {{ form.city.errors }} + +
+
+
+ +
+
+ {{ form.phone }} +
+ {{ form.phone.errors }} + +
+
+ +
+ {{ form.person }} +
+ {{ form.person.errors }} + +
+
+
+ +
+ +
+ +
+ +
+
+
+ +
+
+
+ +
+ +
+
+{# ----------------------------------------- END FORM -------------------------------------------#} + +
+
+
+
+
+
от {{ object.price }} {{ object.currency }} / день
+ +
+
+
+
+
+ + + + +
+ {% if request.GET.debug == '1' %} + + {% else %} + + {% endif %} + + + + + + {% with object.specialists.all as specialists %} + {% if specialists %} +
+
Наши специалисты
+ + + +
+ {% endif %} + {% endwith %} + +
+ {% with object.feedback_set.all as feedbacks %} + {% if feedbacks %} +
+ +
+
Отзывы клиентов:
+
+ {% for feedback in feedbacks %} +
+
+ +
+ {% thumbnail feedback.logo "100x100" crop="center" as im %} + + {% endthumbnail %} +
+
+
+
+
{{ feedback.company }}
+
+
+ +
{{ feedback.name }}
+ +
+ {{ feedback.text }} +
+
+ +
+
+ {% endfor %} +
+
+ +
+ {% endif %} + {% endwith %} + +
+ +{% endblock %} \ No newline at end of file diff --git a/templates/client/static_client/js/_modules/block.exposition.list.js b/templates/client/static_client/js/_modules/block.exposition.list.js index e98f7d87..b659578a 100644 --- a/templates/client/static_client/js/_modules/block.exposition.list.js +++ b/templates/client/static_client/js/_modules/block.exposition.list.js @@ -37,10 +37,10 @@ if (EXPO.exposition.list){ response, self = this, handler = function (data) { - if (data.success){ + if (data.success) { console.log('ok'); $(self.DOMbutton).addClass('active'); - }else{ + } else { console.log('data not send'); } diff --git a/templates/client/wizard/first_step.html b/templates/client/wizard/first_step.html index 08bcd4db..e216aecb 100644 --- a/templates/client/wizard/first_step.html +++ b/templates/client/wizard/first_step.html @@ -1,218 +1,209 @@ -{% extends 'client/base_catalog.html' %} - -{% block content_list %} - {{ form.errors }} -
-
-
- {{ wizard.form.media }} -

Шаг {{ wizard.steps.step1 }}. Основная информация

-
-
{% csrf_token %} - {{ wizard.management_form }} - {# {% if wizard.form.forms %}#} - {# {{ wizard.form.management_form }}#} - {# {% for form in wizard.form.forms %}#} - {# {{ form }}#} - {# {% endfor %}#} - {# {% else %}#} - {% with wizard.form as form %} -
-
-
- - {{ form.theme }} -
-
- - {{ form.tag }} -
-
-
- -

Описание выставки

- -
-
- {{ form.name }} -
-
- -
-
- {{ form.main_title }} -
-
- -
-
- {{ form.description }} -
-
- -
- -
- - -
-
-
- - {{ form.date_start }} -
-
- - {{ form.date_end }} -
-
-
-
- -
- -
- -

Локация

- -
-
-

Место проведения:

- {{ form.place }} -
-
- -
-
-

Страна:

- {{ form.country }} -
- -
-

Город:

- {{ form.city }} -
-
- -
-
- -
-

Дополнительная информация

- -
- - -
- -
-
- - - -
- -
- {{ form.periodic }} -
-
- -
- -
-
- -
- - -
- - - -
-
-
- -
-
- {{ form.web_site }} - - {{ form.products }} - -
- -
-
- -
- - -
-
- {#
#} - {# #} - {#
#} - -
- - {{ form.time_start }} -
- -
- - {{ form.time_end }} -
- - {# #} -
- -
-
- -
-
- - - -
-
-
- -
- -
- -
- -
- - {% endwith %} -
- -
-
-

Шаг 2. Статистика и условия участия

-
-
- -
-
-

Шаг 3. Добавление фото

-
-
- -
-
- {# {% endif %}#} -{% endblock %} +{% extends 'client/base_catalog.html' %} +{% load static %} + +{% block head_scripts %} + + +{% endblock %} + +{% block content_list %} + {{ form.errors }} +
+
+
+ {{ wizard.form.media }} +

Шаг {{ wizard.steps.step1 }}. Основная информация

+
+
{% csrf_token %} + {{ wizard.management_form }} + {% with wizard.form as form %} +
+
+
+ + {{ form.theme }} +
+
+ + {{ form.tag }} +
+
+
+ +

Описание выставки

+ +
+
+ {{ form.name }} +
+
+ +
+
+ {{ form.main_title }} +
+
+ +
+
+ {{ form.description }} +
+
+ +
+ +
+ + +
+
+
+ + {{ form.date_start }} +
+
+ + {{ form.date_end }} +
+
+
+
+ +
+ +
+ +

Локация

+ +
+
+

Место проведения:

+ {{ form.place }} +
+
+ +
+
+

Страна:

+ {{ form.country }} +
+ +
+

Город:

+ {{ form.city }} +
+
+ +
+
+ +
+

Дополнительная информация

+ +
+ + +
+ +
+
+ + + +
+ +
+ Периодичность: + {{ form.periodic }} +
+
+ +
+ +
+
+ +
+ + +
+ + + +
+
+
+ +
+
+ {{ form.web_site }} + + {{ form.products }} + +
+ +
+
+ +
+ + +
+
+
+ + {{ form.time_start }} +
+ +
+ + {{ form.time_end }} +
+
+
+
+ +
+
+ + + +
+
+
+ +
+ +
+ +
+ +
+ + {% endwith %} +
+ +
+
+

Шаг 2. Статистика и условия участия

+
+
+ +
+
+

Шаг 3. Добавление фото

+
+
+ +
+
+{% endblock %} diff --git a/templates/client/wizard/second_step.html b/templates/client/wizard/second_step.html index 8ac6c79d..90018852 100644 --- a/templates/client/wizard/second_step.html +++ b/templates/client/wizard/second_step.html @@ -1,310 +1,261 @@ -{% extends 'client/base_catalog.html' %} - -{% block content_list %} - {{ form.errors }} -
-

Добавить событие

-
-
- {{ wizard.form.media }} -
-
-

Шаг 1. Основная информация

- - -
-
- - - -
-
-

Шаг 2. Статистика и условия участия

- -
-
+ 0,9 баллов к рейтингу
-
-
- -
{% csrf_token %} - {{ wizard.management_form }} - {% if wizard.form.forms %} - {{ wizard.form.management_form }} - {% for form in wizard.form.forms %} - {{ form }} - {% endfor %} - {% else %} - {% with wizard.form as form %} -
- -
- -
- - {{ form.found_year }} -
- -
-
- -
- -
- -
- - -
- -
- {{ form.statistic_year }} -
- -
- -
- {{ form.visitors }} -
- -
- {{ form.partisipants }} -
- -
- {{ form.square }} - м² -
-
- -
-
- -
- - -
- -
-
-
-
- {{ form.countries }} -
-
-
-
-
- -
- - - -
- -
- -

Стоимость посещения и участия

- -
-
- -
-
- -
Стоимость билетов
- -
- -
    - -
  • - {{ form.one_day }} - -
  • - -
  • - {{ form.all_days }} - -
  • - -
- -
Предварительная регистрация
- -
- -
- -
- -
    - -
  • - {{ form.pre_one_day }} - -
  • - -
  • - {{ form.pre_all_days }} - -
  • - -
- -
Регистрация на стойке
- -
- -
- -
- -
-
- -
Стоимость аренды 1м²
- -
    - -
  • - {{ form.equiped }} - -
  • - -
  • - {{ form.unequiped }} - -
  • - -
  • - {{ form.open_square }} - -
  • - -
- -
- -
- - -
- {{ form.min_square }} - м² -
-
- -
- -
- - -
- {{ form.registration_depos }} - -
-
- -
- -
- - -
-
-
- {{ form.deadline_date }} -
-
-
-
- -
-
- -
-
- -
- -
- -
-
- - -
-

более полная информация повышает рейтинг вашего мероприятия и позволяет ранжировать - его выше других

-
-
- -
- - {% if wizard.steps.prev %} - - - {% endif %} - - -
-
- -
-
-
-

Шаг 3. Добавление фото

- - -
-
-
-{% endwith %} -{% endif %} - +{% extends 'client/base_catalog.html' %} +{% load static %} + + +{% block head_scripts %} + + +{% endblock %} + + +{% block content_list %} + {{ form.errors }} +
+

Добавить событие

+
+
+
{% csrf_token %} + + {{ wizard.form.media }} +
+
+

Шаг 1. Основная информация

+ +
+ +
+
+
+ + +
+
+

Шаг 2. Статистика и условия участия

+ +
+
+ 0,9 баллов к рейтингу
+
+
+ + {{ wizard.management_form }} + {% if wizard.form.forms %} + {{ wizard.form.management_form }} + {% for form in wizard.form.forms %} + {{ form }} + {% endfor %} + {% else %} + {% with wizard.form as form %} +
+ +
+ +
+ + {{ form.found_year }} +
+ +
+
+ +
+ +

Стоимость посещения и участия

+ +
+
+ +
+
+ +
Стоимость билетов
+ +
+ +
    + +
  • + {{ form.one_day }} + +
  • + +
  • + {{ form.all_days }} + +
  • + +
+ +
Предварительная регистрация
+ +
+ +
+ +
+ +
    + +
  • + {{ form.pre_one_day }} + +
  • + +
  • + {{ form.pre_all_days }} + +
  • + +
+ +
Регистрация на стойке
+ +
+ +
+ +
+ +
+
+ +
Стоимость аренды 1м²
+ +
    + +
  • + {{ form.equiped }} + +
  • + +
  • + {{ form.unequiped }} + +
  • + +
  • + {{ form.open_square }} + +
  • + +
+ +
+ +
+ + +
+ {{ form.min_square }} + м² +
+
+ +
+ +
+ + +
+ {{ form.registration_depos }} + +
+
+ +
+ +
+ + +
+
+
+ {{ form.deadline_date }} +
+
+
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ {# #} + +
+

более полная информация повышает рейтинг вашего мероприятия и позволяет + ранжировать + его выше других

+
+
+ +
+ + +
+ +
+
+
+

Шаг 3. Добавление фото

+ + +
+
+ +
+ + {% endwith %} + {% endif %} + {% endblock %} \ No newline at end of file diff --git a/templates/client/wizard/third_step.html b/templates/client/wizard/third_step.html new file mode 100644 index 00000000..df135d76 --- /dev/null +++ b/templates/client/wizard/third_step.html @@ -0,0 +1,148 @@ +{% extends "client/base_catalog.html" %} + + +{% block styles %} + +{% endblock %} + +{% block content_list %} + {{ wizard.form.media }} + +
+

Добавить событие

+
+ +
+
{% csrf_token %} + + +
+
+

Шаг 1. Основная информация

+ +
+ +
+ +
+
+
+
+

Шаг 2. Статистика и условия участия

+ +
+ +
+
+
+
+
+

Шаг 3. Добавление фото

+ +
+
+ 1,2 балла к рейтингу
+
+
+ {{ form.errors }} + {{ wizard.management_form }} + {% if wizard.form.forms %} + {{ wizard.form.management_form }} + {% for form in wizard.form.forms %} + {{ form }} + {% endfor %} + {% else %} + {% with wizard.form as form %} +
+
+
+
+ {{ form.attachments }} +
+ +
+

более полная информация повышает рейтинг вашего мероприятия и позволяет + ранжировать его выше других

+
+
+ +
+ +
    +
    + +
    + +
    + +
    + +
    +
    + +
    + {% endwith %} + {% endif %} +
    +
    + +
    + + {% comment %} {% endcomment %} + + +{% endblock %} \ No newline at end of file diff --git a/templates/client/wizard/wizard.html b/templates/client/wizard/wizard.html index 8735fb4c..0fc0748c 100644 --- a/templates/client/wizard/wizard.html +++ b/templates/client/wizard/wizard.html @@ -1,23 +1,23 @@ -{% extends 'client/base_catalog.html' %} -{% block content_list %} - {{ wizard.form.media }} -

    Step {{ wizard.steps.step1 }} of {{ wizard.steps.count }}

    -
    {% csrf_token %} - -{{ wizard.management_form }} -{% if wizard.form.forms %} - {{ wizard.form.management_form }} - {% for form in wizard.form.forms %} - {{ form }} - {% endfor %} -{% else %} - {{ wizard.form }} -{% endif %} -
    -{% if wizard.steps.prev %} - - -{% endif %} - -
    +{% extends 'client/base_catalog.html' %} +{% block content_list %} + {{ wizard.form.media }} +

    Step {{ wizard.steps.step1 }} of {{ wizard.steps.count }}

    +
    {% csrf_token %} + +{{ wizard.management_form }} +{% if wizard.form.forms %} + {{ wizard.form.management_form }} + {% for form in wizard.form.forms %} + {{ form }} + {% endfor %} +{% else %} + {{ wizard.form }} +{% endif %} +
    +{% if wizard.steps.prev %} + + +{% endif %} + +
    {% endblock %} \ No newline at end of file diff --git a/theme/models.py b/theme/models.py index ee5c8f72..50ece870 100644 --- a/theme/models.py +++ b/theme/models.py @@ -246,7 +246,6 @@ def pre_save_handler(sender, **kwargs): if not obj.url: obj.url = ''.join([random.choice(string.ascii_lowercase) for n in xrange(8)]) -pre_save.connect(pre_save_handler, sender=Theme) pre_save.connect(pre_save_handler, sender=Tag) post_save.connect(post_save_handler, sender=Theme) diff --git a/wizard/forms.py b/wizard/forms.py index 37bcdb7c..c2e76b1b 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -1,65 +1,75 @@ -# -*- coding: utf-8 -*- -from django import forms -from theme.models import Theme, Tag -from place_exposition.models import PlaceExposition -from city.models import City -from country.models import Country - -choices = ((0, ''), (1.0, u'Ежегодно'), (2.0, u'2 раза в год'), (3.0, u'3 раза в год'), (4.0, u'4 раза в год'), - (5.0, u'5 раз в год'), (0.5, u'Раз в 2 года'), ( - 0.33, u'Раз в 3 года'), (0.25, u'Раз в 4 года')) - - -class ExpoForm1(forms.Form): - """ - main information about exposition - """ - theme = forms.ModelChoiceField(queryset=Theme.objects.filter(id=50)) - tag = forms.ModelChoiceField(queryset=Tag.objects.filter(id=50)) - name = forms.CharField(max_length=255, widget=forms.TextInput(attrs={'placeholder': "Введите название выставки"})) - main_title = forms.CharField(max_length=255, widget=forms.TextInput(attrs={'placeholder': "Краткое описание выставки (необязательно)"})) - description = forms.CharField(widget=forms.Textarea(attrs={'placeholder': "Полное описание выставки", 'cols':30, 'rows':10})) - date_start = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateFrom', 'placeholder':'дд.мм.гг'})) - date_end = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateTo','placeholder':'дд.мм.гг'})) - country = forms.ModelChoiceField(queryset=Country.objects.filter(id=50)) - city = forms.ModelChoiceField(queryset=City.objects.language('ru').filter(id=900052419)) - place = forms.ModelChoiceField(queryset=PlaceExposition.objects.filter(id=50)) - audience1 = forms.BooleanField(required=False) - audience2 = forms.BooleanField(required=False) - audience3 = forms.BooleanField(required=False) - periodic = forms.ChoiceField(choices=choices) - membership1= forms.BooleanField(required=False) - membership2= forms.BooleanField(required=False) - membership3= forms.BooleanField(required=False) - web_site = forms.URLField(required=False, widget=forms.TextInput(attrs={'placeholder': "Веб-сайт (необязательно)"})) - products = forms.CharField(widget=forms.Textarea(attrs={'placeholder': "Экспонируемые продукты", 'cols':30, 'rows':10})) - time_start = forms.TimeField() - time_end = forms.TimeField() - logo = forms.ImageField(widget=forms.FileInput(attrs={'class':"button big icon-clip"}), required=False) - - -class ExpoForm2(forms.Form): - """ - statistics - """ - found_year = forms.IntegerField() - statistic_year = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'введите год'})) - visitors = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'количество посетителей'})) - partisipants = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'количество учасников'})) - square = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'площадь'})) - countries = forms.ModelChoiceField(queryset=Country.objects.filter(id=50)) - - # ticket price - pre_one_day = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на один день'})) - pre_all_days = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на все дни'})) - one_day = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на один день'})) - all_days = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на все дни'})) - - # rent price - equiped = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'оборудованная площадь'})) - unequiped = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'необорудованная площадь'})) - open_square = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'открытая площадь'})) - min_square = forms.FloatField() - registration_depos = forms.FloatField() - deadline_date = forms.DateField(widget=forms.TextInput(attrs={'placeholder':'дд.мм.гг'})) - +# -*- coding: utf-8 -*- +from django import forms +from theme.models import Theme +from place_exposition.models import PlaceExposition +from country.models import Country +from multiupload.fields import MultiFileField, MultiFileInput + + +choices = ((0, ''), (1.0, u'Ежегодно'), (2.0, u'2 раза в год'), (3.0, u'3 раза в год'), (4.0, u'4 раза в год'), + (5.0, u'5 раз в год'), (0.5, u'Раз в 2 года'), ( + 0.33, u'Раз в 3 года'), (0.25, u'Раз в 4 года')) + +places = [(item.id, item.name) for item in PlaceExposition.objects.language().all()] +places.insert(0,('', 'Не выбрано')) + + +class ExpoForm1(forms.Form): + """ + main information about exposition + """ + name = forms.CharField(max_length=255, widget=forms.TextInput(attrs={'placeholder': "Введите название выставки"})) + main_title = forms.CharField(max_length=255, widget=forms.TextInput(attrs={'placeholder': "Краткое описание выставки (необязательно)"})) + description = forms.CharField(widget=forms.Textarea(attrs={'placeholder': "Полное описание выставки", 'cols':30, 'rows':10})) + date_start = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateFrom', 'placeholder':'дд.мм.гг'})) + date_end = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateTo','placeholder':'дд.мм.гг'})) + + country = forms.ChoiceField(label=u'Страна', choices=[(c.id, c.name) for c in Country.objects.all()], widget=forms.Select(attrs={'id':'id_country'})) + theme = forms.MultipleChoiceField(label='Тематики', choices=[(item.id, item.name) for item in Theme.objects.language().all()], widget=forms.SelectMultiple(attrs={'id':'id_theme'})) + place = forms.ChoiceField(label=u'Место проведения', required=False, choices=places, widget=forms.Select(attrs={'id':'id_place'})) + city = forms.CharField(label=u'Город', widget=forms.HiddenInput(attrs={'id':'id_city'})) + tag = forms.CharField(label=u'Теги', widget=forms.HiddenInput(attrs={'id':'id_tag'}), required=False) + + audience1 = forms.BooleanField(required=False) + audience2 = forms.BooleanField(required=False) + audience3 = forms.BooleanField(required=False) + periodic = forms.ChoiceField(choices=choices, required=False) + membership1 = forms.BooleanField(required=False) + membership2 = forms.BooleanField(required=False) + membership3 = forms.BooleanField(required=False) + web_site = forms.URLField(required=False, widget=forms.TextInput(attrs={'placeholder': "Веб-сайт (необязательно)"})) + products = forms.CharField(widget=forms.Textarea(attrs={'placeholder': "Экспонируемые продукты", 'cols':30, 'rows':10})) + time_start = forms.TimeField() + time_end = forms.TimeField() + logo = forms.ImageField(widget=forms.FileInput(attrs={'class':"button big icon-clip"}), required=False) + + +class ExpoForm2(forms.Form): + """ + statistics + """ + found_year = forms.IntegerField() + # ticket price + pre_one_day = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на один день'})) + pre_all_days = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на все дни'})) + one_day = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на один день'})) + all_days = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на все дни'})) + + # rent price + equiped = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'оборудованная площадь'})) + unequiped = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'необорудованная площадь'})) + open_square = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'открытая площадь'})) + min_square = forms.FloatField() + registration_depos = forms.FloatField() + deadline_date = forms.DateField(widget=forms.TextInput(attrs={'placeholder':'дд.мм.гг'})) + + +class ExpoForm3(forms.Form): + """ + photos from last expositions + """ + attachments = MultiFileField(min_num=0, max_num=6, max_file_size=1024*1024*5, widget=MultiFileInput( + attrs={'class':'button big icon-camera', 'value': u'выберите фотографии', 'id': 'files'} + )) + + diff --git a/wizard/models.py b/wizard/models.py index 71a83623..e69de29b 100644 --- a/wizard/models.py +++ b/wizard/models.py @@ -1,3 +0,0 @@ -from django.db import models - -# Create your models here. diff --git a/wizard/urls.py b/wizard/urls.py index bc42d249..527cd96d 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,8 +1,7 @@ -from django.conf.urls import patterns - -from wizard.forms import ExpoForm1, ExpoForm2 -from wizard.views import ExpoWizard - -urlpatterns = patterns('', - (r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) -) \ No newline at end of file +from django.conf.urls import patterns, url +from .views import ExpoWizard +from .forms import ExpoForm1, ExpoForm2,ExpoForm3 + +formlist = [ExpoForm1,ExpoForm2, ExpoForm3] + +urlpatterns = patterns('', url(r'^$', ExpoWizard.as_view(formlist), name = 'add_exposition')) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py index 30a3ad5a..01dadcac 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -1,64 +1,125 @@ -from django.shortcuts import render_to_response from django.contrib.formtools.wizard.views import SessionWizardView -from django.core.files.storage import default_storage, FileSystemStorage +from django.core.files.storage import FileSystemStorage +from django.http import HttpResponseRedirect, HttpResponseForbidden +from django.conf import settings +from django.contrib.auth.decorators import login_required +from django.utils.decorators import method_decorator +from django.core.exceptions import PermissionDenied + import os -from proj import settings -from wizard import forms -from exposition.models import Exposition, Statistic +from photologue.models import Photo +from exposition.models import Exposition from functions.form_check import translit_with_separator +from accounts.models import User +from country.models import Country +from city.models import City +from place_exposition.models import PlaceExposition +from theme.models import Tag, Theme + +class LoginRequiredMixin(object): + @method_decorator(login_required) + def dispatch(self, request, *args, **kwargs): + if not request.user.organiser: + raise PermissionDenied + return super(LoginRequiredMixin, self).dispatch(request, *args, **kwargs) # defining different template for every form -TEMPLATES = {'0':'client/wizard/first_step.html', '1':'client/wizard/second_step.html'} +TEMPLATES = { + '0': 'client/wizard/first_step.html', + '1': 'client/wizard/second_step.html', + '2': 'client/wizard/third_step.html' +} + +class ExpoWizard(LoginRequiredMixin, SessionWizardView): + """main view that handle all data from 3 forms(steps) and finally create an Exposition""" -class ExpoWizard(SessionWizardView): - location=os.path.join(settings.MEDIA_ROOT, 'temp', 'files') + # storing temporary files during upload + location = os.path.join(settings.MEDIA_ROOT, 'temp') file_storage = FileSystemStorage(location, settings.MEDIA_URL) + SUCCESS_URL = "/" + + def get_template_names(self): + return [TEMPLATES[self.steps.current]] def done(self, form_list, **kwargs): - upload_file = form_list[0].cleaned_data['logo'] + # getting data and files + upload_logo = form_list[0].cleaned_data.get('logo') + upload_images = self.request.FILES.getlist(u'2-attachments') data = self.get_all_cleaned_data() - expo = Exposition.objects.language('ru').create( - name = data.get('name'), - data_begin = data.get('date_start'), - data_end = data.get('date_end'), - main_title = data.get('main_title'), - description = data.get('description'), - products = data.get('products'), - country = data.get('country', 1), - city = data.get('city', 1), - place = data.get('place', 1), - periodic = data.get('periodic'), - web_page = data.get('web_site'), - logo = data.get('logo'), - - foundation_year = data.get('found_year'), - area = data.get('square'), - price_day = '%i %s'%(data.get('one_day'), self.request.POST['oneDayCurrency1']), - price_all = '%i %s'%(data.get('all_days'), self.request.POST['allDaysCurrency1']), - price_day_bar = '%i %s'%(data.get('pre_one_day'),self.request.POST['oneDayCurrency1']), - price_all_bar = '%i %s'%(data.get('pre_all_days'),self.request.POST['allDaysCurrency1']), - - min_area = data.get('min_square'), - registration_payment = data.get('registration_depos'), - application_deadline = data.get('deadline_date'), - min_closed_area = data.get('unequiped'), - min_open_area = data.get('open_square'), - min_closed_equipped_area = data.get('equiped'), - url = translit_with_separator(data.get('name')), - quality_label= 0, - audience = 0 + + # creating new exposition + lang = self.request.LANGUAGE_CODE + expo = Exposition.objects.language(lang).create( + name=data.get('name'), + data_begin=data.get('date_start'), + data_end=data.get('date_end'), + main_title=data.get('main_title'), + description=data.get('description'), + products=data.get('products'), + + country=Country.objects.language(lang).get(id=data.get('country')), + city=City.objects.language(lang).get(id=data.get('city')), + place=PlaceExposition.objects.language(lang).get(id=data.get('place')), + + periodic=data.get('periodic'), + web_page=data.get('web_site'), + logo=data.get('logo'), + + foundation_year=data.get('found_year'), + area=data.get('square'), + price_day=data.get('one_day'), + price_all=data.get('all_days'), + price_day_bar=data.get('pre_one_day'), + price_all_bar=data.get('pre_all_days'), + + min_area=data.get('min_square'), + registration_payment=data.get('registration_depos'), + application_deadline=data.get('deadline_date'), + min_closed_area=data.get('unequiped'), + min_open_area=data.get('open_square'), + min_closed_equipped_area=data.get('equiped'), + url=translit_with_separator(data.get('name')), + quality_label=0, + audience=0, + creator=User.objects.get(id=self.request.user.id) ) - expo.tag = [data.get('tag')] - expo.theme = [data.get('theme')] + # adding photo to gallery + photos = [] + for i, photo in enumerate(upload_images): + photos.append(Photo.objects.language(self.request.LANGUAGE_CODE).create( + image=photo, + title=data.get(u'pdescr_%i' % i, photo.name)) + ) + for photo in photos: + expo.upload_photo(photo) + + expo.tag = Tag.objects.language(lang).filter(id__in=data.get('tag').split(',')) + expo.theme = Theme.objects.language(lang).filter(id__in=data.get('theme')) + + # setting bit fields audience and quality_label + self.set_flags(expo, data) + expo.save() + + # remove temporary files if it has any + if upload_logo: + self.file_storage.delete(upload_logo.name) + if upload_images: + for f in upload_images: + self.file_storage.delete(f.name) + + return HttpResponseRedirect(self.SUCCESS_URL) + + @staticmethod + def set_flags(expo, data): if data['membership1']: - expo.quality_label = (expo.quality_label| Exposition.quality_label.exporating) + expo.quality_label = (expo.quality_label | Exposition.quality_label.exporating) if data['membership2']: - expo.quality_label = (expo.quality_label| Exposition.quality_label.rsva) + expo.quality_label = (expo.quality_label | Exposition.quality_label.rsva) if data['membership3']: - expo.quality_label = (expo.quality_label| Exposition.quality_label.ufi) + expo.quality_label = (expo.quality_label | Exposition.quality_label.ufi) if data['audience1']: expo.audience = (expo.audience | Exposition.audience.experts) @@ -67,23 +128,4 @@ class ExpoWizard(SessionWizardView): if data['audience3']: expo.audience = expo.audience | (getattr(Exposition.audience, 'general public')) - expo.save() - - Statistic.objects.language().create( - exposition = expo, - year = data.get('statistic_year'), - visitors = data.get('visitors'), - members = data.get('partisipants'), - countries = data.get('countries'), - area = data.get('square') - ) - - if upload_file: - self.file_storage.delete(upload_file.name) - return render_to_response('done.html', { - 'form_data': [form.cleaned_data for form in form_list], - }) - - def get_template_names(self): - return [TEMPLATES[self.steps.current]]