From 0ee734eb98c53594cfb18e296b891ed87b61654f Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 27 Aug 2015 15:15:32 +0300 Subject: [PATCH 01/16] account list and change --- accounts/admin.py | 13 +- accounts/forms.py | 184 +- core/admin_urls.py | 10 + core/utils.py | 76 + expobanner/__init__.py | 0 expobanner/admin.py | 74 + expobanner/admin_urls.py | 21 + expobanner/forms.py | 76 + expobanner/managers.py | 32 + expobanner/models.py | 236 + expobanner/static/banners/css/slider.css | 159 + expobanner/static/banners/js/log.js | 10 + expobanner/static/banners/js/slider.js | 71 + expobanner/templates/banner.html | 55 + expobanner/templates/grid.html | 32 + expobanner/templates/group.html | 30 + expobanner/templates/slider.html | 74 + expobanner/templatetags/__init__.py | 0 expobanner/templatetags/banner.py | 74 + expobanner/tests.py | 16 + expobanner/urls.py | 11 + expobanner/views.py | 46 + functions/admin_views.py | 6 +- logs/django_request.log | 0 logs/mylog.log | 16 + logs/mylog.log.1 | 7056 +++++++++++++++++ proj/decorators.py | 16 + templates/admin/accounts/user_change.html | 72 +- templates/admin/accounts/user_list.html | 8 +- .../admin/expobanner/banners_control.html | 33 + templates/admin/expobanner/default_form.html | 59 + templates/admin/expobanner/default_list.html | 34 + templates/admin/meta/create_seo_text.html | 63 + templates/admin/meta/seo_admin_list.html | 54 + templates/admin/meta/seo_confirm_delete.html | 11 + templates/admin/page/new_page.html | 90 + templates/admin/page/page_admin_list.html | 58 + templates/admin/page/page_confirm_delete.html | 11 + templates/client/404_test.html | 31 + templates/client/accounts/email_required.html | 7 + templates/client/base_page.html | 113 + templates/client/includes/seo_text.html | 3 + templates/client/page/page_view.html | 19 + templates/client/popups/acquire_email.html | 24 + .../static_client/css/jquery.fancybox.css | 274 + templates/client/static_client/js/expo_b.js | 7 + .../static_client/js/jquery.fancybox.pack.js | 46 + templates/client/wizard/first_step.html | 218 + templates/client/wizard/second_step.html | 310 + templates/client/wizard/wizard.html | 23 + templates/done.html | 1 + templates/registration/acquire_email.html | 27 + .../social_registration_complete.html | 8 + wizard/__init__.py | 0 wizard/forms.py | 65 + wizard/models.py | 3 + wizard/tests.py | 16 + wizard/urls.py | 8 + wizard/views.py | 89 + 59 files changed, 10091 insertions(+), 88 deletions(-) create mode 100644 core/admin_urls.py create mode 100644 core/utils.py create mode 100644 expobanner/__init__.py create mode 100644 expobanner/admin.py create mode 100644 expobanner/admin_urls.py create mode 100644 expobanner/forms.py create mode 100644 expobanner/managers.py create mode 100644 expobanner/models.py create mode 100644 expobanner/static/banners/css/slider.css create mode 100644 expobanner/static/banners/js/log.js create mode 100644 expobanner/static/banners/js/slider.js create mode 100644 expobanner/templates/banner.html create mode 100644 expobanner/templates/grid.html create mode 100644 expobanner/templates/group.html create mode 100644 expobanner/templates/slider.html create mode 100644 expobanner/templatetags/__init__.py create mode 100644 expobanner/templatetags/banner.py create mode 100644 expobanner/tests.py create mode 100644 expobanner/urls.py create mode 100644 expobanner/views.py create mode 100644 logs/django_request.log create mode 100644 logs/mylog.log create mode 100644 logs/mylog.log.1 create mode 100644 proj/decorators.py create mode 100644 templates/admin/expobanner/banners_control.html create mode 100644 templates/admin/expobanner/default_form.html create mode 100644 templates/admin/expobanner/default_list.html create mode 100644 templates/admin/meta/create_seo_text.html create mode 100644 templates/admin/meta/seo_admin_list.html create mode 100644 templates/admin/meta/seo_confirm_delete.html create mode 100644 templates/admin/page/new_page.html create mode 100644 templates/admin/page/page_admin_list.html create mode 100644 templates/admin/page/page_confirm_delete.html create mode 100644 templates/client/404_test.html create mode 100644 templates/client/accounts/email_required.html create mode 100644 templates/client/base_page.html create mode 100644 templates/client/includes/seo_text.html create mode 100644 templates/client/page/page_view.html create mode 100644 templates/client/popups/acquire_email.html create mode 100644 templates/client/static_client/css/jquery.fancybox.css create mode 100644 templates/client/static_client/js/expo_b.js create mode 100644 templates/client/static_client/js/jquery.fancybox.pack.js create mode 100644 templates/client/wizard/first_step.html create mode 100644 templates/client/wizard/second_step.html create mode 100644 templates/client/wizard/wizard.html create mode 100644 templates/done.html create mode 100644 templates/registration/acquire_email.html create mode 100644 templates/registration/social_registration_complete.html create mode 100644 wizard/__init__.py create mode 100644 wizard/forms.py create mode 100644 wizard/models.py create mode 100644 wizard/tests.py create mode 100644 wizard/urls.py create mode 100644 wizard/views.py diff --git a/accounts/admin.py b/accounts/admin.py index bd8a2251..ec8b1047 100644 --- a/accounts/admin.py +++ b/accounts/admin.py @@ -13,13 +13,24 @@ 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 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 + def user_change(request, url): """ diff --git a/accounts/forms.py b/accounts/forms.py index 00c26f2f..9d7ceb1f 100644 --- a/accounts/forms.py +++ b/accounts/forms.py @@ -5,6 +5,7 @@ from django import forms from django.contrib.auth.forms import ReadOnlyPasswordHashField from django.forms.util import ErrorList from django.utils.translation import ugettext as _ +from django.conf import settings from models import User, Profile from theme.models import Theme, Tag from country.models import Area @@ -13,7 +14,7 @@ from country.models import Country from city.models import City from company.models import Company from organiser.models import Organiser -#functions +# functions from functions.form_check import translit_with_separator, is_latin @@ -27,7 +28,6 @@ def clean_relation_field(inst, field_name, model): return None - class UserCreationForm(forms.ModelForm): password1 = forms.CharField(label='Пароль', widget=forms.PasswordInput(render_value=False)) password2 = forms.CharField(label='Повторите пароль', widget=forms.PasswordInput(render_value=False)) @@ -36,7 +36,6 @@ class UserCreationForm(forms.ModelForm): model = User fields = ('email', 'first_name', 'last_name') - def clean_email(self): """ checking if user already exist @@ -56,7 +55,6 @@ class UserCreationForm(forms.ModelForm): raise forms.ValidationError('Пароли не совпадают') return password2 - def save(self, commit=True): user = super(UserCreationForm, self).save(commit=False) user.set_password(self.cleaned_data['password2']) @@ -66,6 +64,7 @@ class UserCreationForm(forms.ModelForm): return user + class UserChangeForm(forms.ModelForm): password = ReadOnlyPasswordHashField() @@ -76,24 +75,39 @@ class UserChangeForm(forms.ModelForm): return self.initial['password'] - class UserForm(forms.ModelForm): - #email = forms.EmailField(widget=forms.TextInput(attrs={'disabled' : True}), required=False) - country = forms.ChoiceField(label='Страна', choices=[(item.id, item.name) for item in Country.objects.all()], required=False) - city = forms.CharField(label='Город', widget=forms.HiddenInput()) - company = forms.ChoiceField(label='Компания', choices=[(item.id, item.name) for item in Company.objects.language().all()], required=False) - organiser = forms.ChoiceField(label='Организатор', choices=[(item.id, item.name) for item in Organiser.objects.language().all()], required=False) - title = forms.CharField(widget=forms.TextInput(attrs={'style':'width: 550px'}), required=False) - descriptions = forms.CharField(widget=forms.TextInput(attrs={'style':'width: 550px'}), required=False) - keywords = forms.CharField(widget=forms.TextInput(attrs={'style':'width: 550px'}), required=False) - phone = forms.CharField(widget=forms.TextInput(attrs={'style':'width: 550px'}), required=False) + # email = forms.EmailField(widget=forms.TextInput(attrs={'disabled' : True}), required=False) + country = forms.ChoiceField(label='Страна', choices=[(item.id, item.name) for item in Country.objects.all()], + required=False) + city = forms.CharField(label='Город', widget=forms.HiddenInput(), required=False) + company = forms.ChoiceField(label='Компания', + choices=[(item.id, item.name) for item in Company.objects.language().all()], + required=False) + organiser = forms.ChoiceField(label='Организатор', + choices=[(item.id, item.name) for item in Organiser.objects.language().all()], + required=False, initial=None) + title = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) + descriptions = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) + keywords = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) + phone = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) web_page = forms.URLField(required=False) - about = forms.CharField(widget=forms.Textarea()) + about = forms.CharField(widget=forms.Textarea(), required=False) + avatar = forms.ImageField(required=False) + # --- + skype = forms.CharField(required=False) + facebook = forms.URLField(required=False) + twitter = forms.URLField(required=False) + linkedin = forms.URLField(required=False) + vk = forms.URLField(required=False) + + new_password = forms.CharField(required=False, min_length=6, max_length=60, + widget=forms.TextInput(attrs={'class': 'new_password'})) class Meta: model = User - exclude = ('username', 'email','last_login', 'password', 'is_active', 'is_admin', 'is_superuser', 'is_staff' - 'date_joined', 'date_registered', 'date_modified') + exclude = ('username', 'email', 'last_login', 'password', 'is_admin', 'rating', 'is_superuser', 'is_staff' + 'date_joined', + 'date_registered', 'date_modified') def save(self, force_insert=False, force_update=False, commit=True): @@ -108,28 +122,34 @@ class UserForm(forms.ModelForm): profile.phone = data.get('phone') profile.web_page = data.get('web_page') profile.about = data.get('about') + profile.skype = data.get('skype', '') + profile.facebook = data.get('facebook', '') + profile.twitter = data.get('twitter', '') + profile.linkedin = data.get('linkedin', '') + profile.vk = data.get('vk', '') + profile.avatar = data.get('avatar') + + if data['new_password']: + new_pass = data['new_password'] + user.set_password(new_pass) + user.email_user('Reset password', 'Your new password: "%s" ' % new_pass, settings.DEFAULT_FROM_EMAIL, ) if commit: user.save() profile.save() return user - """ def clean_url(self): url = self.cleaned_data.get('url') - try: - user = User.objects.get(url=translit_with_separator(url)) - if (user.url == translit_with_separator(url)): + if url: + if User.objects.get(url=translit_with_separator(url)): + raise forms.ValidationError('Такой урл уже занят') + else: return url - except: - return url - raise forms.ValidationError('Такой урл уже занят') - """ def clean_organiser(self): return clean_relation_field(self, 'organiser', Organiser) - def clean_company(self): return clean_relation_field(self, 'company', Company) @@ -139,23 +159,23 @@ class UserForm(forms.ModelForm): def clean_city(self): return clean_relation_field(self, 'city', City) - def clean_phone(self): """ phone code checking """ cleaned_data = super(UserForm, self).clean() phone = cleaned_data.get('phone') - if not phone: + if not phone: return - deduct = ('-','(',')','.',' ') + deduct = ('-', '(', ')', '.', ' ') for elem in deduct: phone = phone.replace(elem, '') if phone.isdigit(): return phone else: raise forms.ValidationError('Введите правильный код страны') + """ def clean_web_page(self): cleaned_data = super(UserForm, self).clean() @@ -171,6 +191,7 @@ class UserForm(forms.ModelForm): return forms.ValidationError('Введите правильный адрес страници') """ + class ChangePasswordForm(forms.Form): """ Form to change password @@ -183,7 +204,8 @@ class ChangePasswordForm(forms.Form): attrs={'placeholder': _(u'Придумайте новый пароль')})) new_password_confirm = forms.CharField(label=_(u'Confirm password'), required=True, widget=forms.PasswordInput(render_value=False, - attrs={'placeholder': _(u'Повторите новый пароль')})) + attrs={ + 'placeholder': _(u'Повторите новый пароль')})) def clean(self): data = super(ChangePasswordForm, self).clean() @@ -191,7 +213,7 @@ class ChangePasswordForm(forms.Form): password2 = data.get('new_password_confirm') if not password1 or not password2: return data - # self._errors['new_password'] = ErrorList([_(u'Different passwords!')]) + # self._errors['new_password'] = ErrorList([_(u'Different passwords!')]) # return data if password1 and password2 and password1 != password2: # check if passwords exists and equal @@ -200,7 +222,7 @@ class ChangePasswordForm(forms.Form): del data['new_password_confirm'] del data['new_password'] return data - if not password1.isdigit() and any(char.isdigit() for char in password1) and len(password1)>5: + if not password1.isdigit() and any(char.isdigit() for char in password1) and len(password1) > 5: # password must contain digits and letters and length > 5 return data else: @@ -210,33 +232,35 @@ class ChangePasswordForm(forms.Form): del data['new_password_confirm'] return data + class EmailAnnouncementForm(forms.Form): data = [(1, _(u'Получать приглашения, сообщения и другую корреспонденцию от пользователей Expomap')), - (2, _(u'Получать обзор событий')), - (3, _(u'Получать новости'))] + (2, _(u'Получать обзор событий')), + (3, _(u'Получать новости'))] announcement = forms.MultipleChoiceField(choices=data, widget=forms.CheckboxSelectMultiple()) class RegistrationCompleteForm(forms.ModelForm): - country = forms.ModelChoiceField(label='Страна', queryset= Country.objects.all(), + country = forms.ModelChoiceField(label='Страна', queryset=Country.objects.all(), widget=forms.Select(attrs={'class': 'select2'})) city = forms.CharField(label='Город', widget=forms.HiddenInput()) url = forms.CharField(widget=forms.TextInput(attrs={'placeholder': _(u'url(обязательно)')})) code_country = forms.ChoiceField(label=_(u'код страны'), initial='70', - choices=[(str(c.phone_code), '+'+str(c.phone_code)) for c in Country.objects.all() if c.phone_code is not None], + choices=[(str(c.phone_code), '+' + str(c.phone_code)) for c in + Country.objects.all() if c.phone_code is not None], widget=forms.Select(attrs={'class': 'select2'})) code_city = forms.CharField(label=_(u'код города')) phone = forms.CharField(label=_(u'ваш номер')) + class Meta: model = User fields = ('url',) - def save(self, force_insert=False, force_update=False, commit=True): user = super(RegistrationCompleteForm, self).save(commit=False) data = self.cleaned_data - phone = data['code_country']+data['code_city']+data['phone'] + phone = data['code_country'] + data['code_city'] + data['phone'] user.profile.phone = int(phone) user.profile.country = data['country'] @@ -253,7 +277,6 @@ class RegistrationCompleteForm(forms.ModelForm): except City.DoesNotExist: return None - def clean_url(self): url = self.cleaned_data['url'] if not is_latin(url): @@ -267,6 +290,36 @@ class RegistrationCompleteForm(forms.ModelForm): +class SocialRegistrationCompleteForm(RegistrationCompleteForm): + email = forms.EmailField(widget=forms.TextInput(attrs={'placeholder': _(u'Email')}), required=True) + + class Meta: + model = User + fields = ['email', 'url'] + + def save(self, force_insert=False, force_update=False, commit=True): + email = self.cleaned_data['email'] + if User.objects.filter(email=email).exists(): + # pass to the view user, that had account before + user = User.objects.get(email=email) + # social = UserSocialAuth.objects.get(user=self.instance) + # social.user = user # that cause AuthAlreadyAssociated error! + else: + # create new user, with data from social auth + user = super(RegistrationCompleteForm, self).save(commit=False) # creating new user + user.username = email + + data = self.cleaned_data + phone = data['code_country'] + data['code_city'] + data['phone'] + user.profile.phone = int(phone) + user.profile.country = data['country'] + user.profile.city = data['city'] + user.profile.save() + + # if commit: + user.save() + return user + class RecoveryForm(forms.Form): email = forms.EmailField(widget=forms.TextInput(attrs={'placeholder': _(u'Email')})) @@ -283,10 +336,13 @@ class RecoveryForm(forms.Form): raise forms.ValidationError(_(u'Пользователь с таким емейлом не зарегестрирован')) +from django.db.models import Q + class UserFilterForm(forms.Form): model = User - email = forms.CharField(label=_(u'Email'), required=False) + search_req = forms.CharField(label=_(u'Введите e-mail, имя или фамилию для запроса'), required=False) + def filter(self): """ @@ -295,27 +351,31 @@ class UserFilterForm(forms.Form): """ data = self.cleaned_data - email = data['email'] + search_req = data['search_req'] + words = search_req.split() model = self.model qs = model.objects.all() - if email: - qs = qs.filter(email__contains=email) + if len(words) > 1: + qs = qs.filter(Q(first_name__contains=words[0]) & Q(last_name__contains=words[1])) + elif words: + qs = qs.filter( + Q(email__contains=search_req) | Q(first_name__contains=search_req) | Q(last_name__contains=search_req)) return qs - class FeedFilterForm(forms.Form): data_with_parents = None filter = None th = forms.MultipleChoiceField(label=_(u'Тематика'), choices=[(item.id, item.name) for item in Theme.active.all()], - required=False, widget=forms.CheckboxSelectMultiple()) + required=False, widget=forms.CheckboxSelectMultiple()) tg = forms.CharField(label=_(u'Теги'), required=False, widget=forms.CheckboxSelectMultiple()) - area = forms.MultipleChoiceField(label=_(u'Регион'), choices=[(item.id, item.name) for item in Area.objects.language().all()], + area = forms.MultipleChoiceField(label=_(u'Регион'), + choices=[(item.id, item.name) for item in Area.objects.language().all()], required=False, widget=forms.CheckboxSelectMultiple()) co = forms.MultipleChoiceField(label=_(u'Страна'), required=False, widget=forms.CheckboxSelectMultiple(), choices=[(item.id, item.name) for item in Country.objects.expo_countries()] - ) + ) ci = forms.MultipleChoiceField(label=_(u'Город'), required=False, widget=forms.CheckboxSelectMultiple(), choices=[(item.id, item.name) for item in City.used.expo_cities()] @@ -336,21 +396,19 @@ class FeedFilterForm(forms.Form): self.filter = filter self.data_with_parents = self.get_form_data(filter) - def get_form_data(self, filter): - if filter.area.exists(): - areas = [{'name':'area', 'id':item.id, 'parent':None, 'text':item.name} for item in filter.area.all()] + areas = [{'name': 'area', 'id': item.id, 'parent': None, 'text': item.name} for item in filter.area.all()] else: areas = [] if filter.country.exists(): cos = [] for country in filter.country.all(): - cos.append({'name':'area', 'id':country.area_id, 'text': country.area.name, 'children':{ - 'id': country.id, 'name':'co', 'text': country.name - } + cos.append({'name': 'area', 'id': country.area_id, 'text': country.area.name, 'children': { + 'id': country.id, 'name': 'co', 'text': country.name + } }) else: cos = [] @@ -358,29 +416,27 @@ class FeedFilterForm(forms.Form): if filter.city.exists(): cis = [] for city in filter.city.all(): - cis.append({'name':'area', 'id': city.country.area_id, 'text': city.country.area.name, 'children':{ - 'id': city.country_id, 'name':'co', 'text': city.country.name, 'children':{ - 'name':'ci', 'id':city.id, 'text':city.name - } - } + cis.append({'name': 'area', 'id': city.country.area_id, 'text': city.country.area.name, 'children': { + 'id': city.country_id, 'name': 'co', 'text': city.country.name, 'children': { + 'name': 'ci', 'id': city.id, 'text': city.name + } + } }) else: cis = [] if filter.theme.exists(): - ths = [{'name':'th', 'id':item.id, 'parent':None, 'text':item.name} for item in filter.theme.all()] + ths = [{'name': 'th', 'id': item.id, 'parent': None, 'text': item.name} for item in filter.theme.all()] else: ths = [] if filter.tag.exists(): tgs = [] for tag in filter.tag.all(): - - - tgs.append({'name':'th', 'id':tag.theme_id, 'text': tag.theme.name, 'children':{ - 'id': tag.id, 'name':'tg', 'text': tag.name - } + tgs.append({'name': 'th', 'id': tag.theme_id, 'text': tag.theme.name, 'children': { + 'id': tag.id, 'name': 'tg', 'text': tag.name + } }) else: tgs = [] diff --git a/core/admin_urls.py b/core/admin_urls.py new file mode 100644 index 00000000..bc8bb409 --- /dev/null +++ b/core/admin_urls.py @@ -0,0 +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'), +) diff --git a/core/utils.py b/core/utils.py new file mode 100644 index 00000000..ee429eee --- /dev/null +++ b/core/utils.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- + +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') +DEFAULT_STYLE = xlwt.easyxf() +CELL_STYLE_MAP = ( + (datetime.date, xlwt.easyxf(num_format_str='DD/MM/YYYY')), + (datetime.time, xlwt.easyxf(num_format_str='HH:MM')), + (bool, xlwt.easyxf(num_format_str='BOOLEAN')), +) + +def multi_getattr(obj, attr, default=None): + attributes = attr.split(".") + for i in attributes: + try: + obj = getattr(obj, i) + except AttributeError: + if default: + return default + else: + return '-' + return obj + + +def get_column_cell(obj, name): + try: + attr = multi_getattr(obj, name) + except ObjectDoesNotExist: + return '' + if hasattr(attr, '_meta'): + # A Django Model (related object) + return unicode(attr).strip() + elif hasattr(attr, 'all'): + # A Django queryset (ManyRelatedManager) + 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 = workbook.add_sheet(sheet_name) + + if not header_style: + header_style = HEADER_STYLE + if not default_style: + default_style = DEFAULT_STYLE + if not cell_style_map: + cell_style_map = CELL_STYLE_MAP + + 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 x, obj in enumerate(queryset, start=1): + for y, column in enumerate(columns): + value = get_column_cell(obj, column) + style = default_style + for value_type, cell_style in cell_style_map: + if isinstance(value, value_type): + style = cell_style + sheet.write(x, y, value, style) + + return workbook + + diff --git a/expobanner/__init__.py b/expobanner/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/expobanner/admin.py b/expobanner/admin.py new file mode 100644 index 00000000..d1273215 --- /dev/null +++ b/expobanner/admin.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +from django.views.generic import TemplateView, CreateView, ListView, UpdateView +from django.conf import settings +from expobanner.models import URL, BannerGroup, Banner +from expobanner.forms import UrlCreateForm, BannerCreateGroupForm, BannerCreateForm, BannerGroupUpdateForm + + +class BannersControl(TemplateView): + template_name = 'admin/expobanner/banners_control.html' + +# CREATE VIEWS +class AbstractCreate(CreateView): + template_name = 'admin/expobanner/default_form.html' + success_url = '/admin/expobanners/banners/control/' + + +class CreateUrl(AbstractCreate): + model = URL + form_class = UrlCreateForm + + +class CreateBannerGroup(AbstractCreate): + model = BannerGroup + form_class = BannerCreateGroupForm + + +class CreateBanner(AbstractCreate): + model = Banner + form_class = BannerCreateForm + + +# LISTS VIEWS +class AbstractList(ListView): + paginate_by = settings.ADMIN_PAGINATION + template_name = 'admin/expobanner/default_list.html' + + def get_context_data(self, **kwargs): + context = super(AbstractList, self).get_context_data(**kwargs) + context['verbose'] = self.verbose + return context + +class UrlList(AbstractList): + model = URL + verbose = u'Список урлов' + + +class BannerGroupList(AbstractList): + model = BannerGroup + verbose = u'Список груп' + + +class BannerList(AbstractList): + model = Banner + verbose = u'Список банеров' + +# UPDATE VIEWS +class AbstractUpdate(UpdateView): + template_name = 'admin/expobanner/default_form.html' + success_url = '/admin/expobanners/banners/control/' + + +class UrlUpdate(AbstractUpdate): + model = URL + form_class = UrlCreateForm + + +class BannerGroupUpdate(AbstractUpdate): + model = BannerGroup + form_class = BannerGroupUpdateForm + + +class BannerUpdate(AbstractUpdate): + model = Banner + form_class = BannerCreateForm \ No newline at end of file diff --git a/expobanner/admin_urls.py b/expobanner/admin_urls.py new file mode 100644 index 00000000..db31823e --- /dev/null +++ b/expobanner/admin_urls.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import patterns, url +from expobanner.admin import * + +urlpatterns = patterns('expobanner.admin', + url(r'^banners/control/$', BannersControl.as_view(), name='expobanner-baneers_control'), + + url(r'^banners/url/$', CreateUrl.as_view(), name='expobanner-create_url'), + url(r'^banners/group/$', CreateBannerGroup.as_view(), name='expobanner-create_group'), + url(r'^banners/banner/$', CreateBanner.as_view(), name='expobanner-create_banner'), + + url(r'^banners/url/list/$', UrlList.as_view(), name='expobanner-list_url'), + url(r'^banners/group/list/$', BannerGroupList.as_view(), name='expobanner-list_group'), + url(r'^banners/banner/list/$', BannerList.as_view(), name='expobanner-list_banner'), + + url(r'^banners/url/(?P\d+)/edit/$', UrlUpdate.as_view(), name='expobanner-update_url'), + url(r'^banners/group/(?P\d+)/edit/$', BannerGroupUpdate.as_view(), name='expobanner-update_group'), + url(r'^banners/banner/(?P\d+)/edit/$', BannerUpdate.as_view(), name='expobanner-update_banner'), + + +) \ No newline at end of file diff --git a/expobanner/forms.py b/expobanner/forms.py new file mode 100644 index 00000000..64ef9f5a --- /dev/null +++ b/expobanner/forms.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- +from django import forms +from expobanner.models import URL, BannerGroup, Banner +from country.models import Country +from city.models import City +from theme.models import Theme, Tag + + +class UrlCreateForm(forms.ModelForm): + verbose = u'Создать урл' + class Meta: + model = URL + exclude = ['created_at', 'updated_at', 'sites'] + + +class BannerCreateGroupForm(forms.ModelForm): + verbose = u'Создать групу' + class Meta: + model = BannerGroup + exclude = ['created_at', 'updated_at', 'speed'] + +class BannerGroupUpdateForm(BannerCreateGroupForm): + verbose = u'Изменить групу' + class Meta: + model = BannerGroup + exclude = ['created_at', 'updated_at', 'slug', 'speed'] + + +class BannerCreateForm(forms.ModelForm): + verbose = u'Создать банер' + country = forms.ChoiceField(label=u'Страна', choices=[('', ' ')] + [(c.id, c.name) for c in Country.objects.all()], required=False) + theme = forms.ChoiceField(label=u'Тематика', required=False, + choices=[('', ' ')] + [(item.id, item.name) for item in Theme.objects.language().all()]) + city = forms.CharField(label=u'Город', widget=forms.HiddenInput(), required=False) + tag = forms.CharField(label=u'Тег', widget=forms.HiddenInput(), required=False) + + + class Meta: + model = Banner + exclude = ['created_at', 'updated_at', 'often', 'paid'] + + def clean_theme(self): + theme = self.cleaned_data['theme'] + if not theme: + return None + try: + return Theme.objects.filter(id=theme) + except Theme.DoesNotExist: + return None + + def clean_country(self): + country = self.cleaned_data['country'] + if not country: + return None + try: + return Country.objects.get(id=country) + except Country.DoesNotExist: + return None + + def clean_tag(self): + tag = self.cleaned_data['tag'] + if not tag: + return None + try: + return Tag.objects.get(id=tag) + except Tag.DoesNotExist: + return None + + def clean_city(self): + city = self.cleaned_data['city'] + if not city: + return None + try: + return City.objects.get(id=city) + except City.DoesNotExist: + return None \ No newline at end of file diff --git a/expobanner/managers.py b/expobanner/managers.py new file mode 100644 index 00000000..af87215b --- /dev/null +++ b/expobanner/managers.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -* +from random import choice, shuffle +from django.db import models +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 + +class BannerGroupCached(models.Manager): + def all(self): + key = 'banner_group_all' + result = cache.get(key) + if not result: + result = list(self.filter()) + cache.set(key, result, 90) + return result + diff --git a/expobanner/models.py b/expobanner/models.py new file mode 100644 index 00000000..7914ae58 --- /dev/null +++ b/expobanner/models.py @@ -0,0 +1,236 @@ +# -*- coding: utf-8 -*- +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 .managers import BiasedManager, BannerGroupCached + + +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) + + 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) + 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): + 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) + + 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)] + ) + 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) + paid = models.BooleanField(verbose_name=_('Is Paid event link?'), default=False) + + + 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) + + theme = models.ForeignKey('theme.Theme', blank=True, null=True, verbose_name=u'Тематика') + tag = models.ForeignKey('theme.Tag', blank=True, null=True, verbose_name=u'Тег') + country = models.ForeignKey('country.Country', blank=True, null=True, verbose_name=u'Страна') + city = models.ForeignKey('city.City', blank=True, null=True, verbose_name=u'Город') + + + 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, key): + log = { + 'type': type, + 'key': key, + '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) + + 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) + 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) + 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): + tickets = models.ForeignKey(Banner, related_name='paid_tickets') + participation = models.ForeignKey(Banner, related_name='paid_participation') + official = models.ForeignKey(Banner, related_name='paid_official') + logo = models.ImageField(upload_to='/')# !!!!! + organiser = models.CharField(max_length=100) + active = models.BooleanField(default=True) + stat_pswd = models.CharField(max_length=16) + created = models.DateTimeField(auto_now_add=True) + modified = models.DateTimeField(auto_now=True) + + +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) + + +class Top(models.Model): + catalog = models.CharField(max_length=16) + position = models.PositiveIntegerField(blank=True, null=True) + theme = models.ManyToManyField('theme.Theme', blank=True, null=True) + excluded_tags = models.ManyToManyField('theme.Tag', blank=True, null=True) + country = models.ManyToManyField('country.Country', blank=True, null=True) + excluded_cities = models.ManyToManyField('city.City', blank=True, null=True) + fr = models.DateField(default=date.today()) + to = models.DateField(blank=True, null=True) + stat_pswd = models.CharField(max_length=16) + + class Meta: + ordering = ['position'] + + +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) \ No newline at end of file diff --git a/expobanner/static/banners/css/slider.css b/expobanner/static/banners/css/slider.css new file mode 100644 index 00000000..d6d86672 --- /dev/null +++ b/expobanner/static/banners/css/slider.css @@ -0,0 +1,159 @@ +/* + ************************** + * =COMMON + ************************** +*/ +.b-slider { + position: relative; + display: block; + overflow: hidden; + margin: 0; + padding: 0; + width: 725px; + height: 360px; +} + +.b-slider-list { + position: absolute; + display: block; + overflow: hidden; + margin: 0; + padding: 0; + width: 725px; + height: 360px; + list-style: none; +} + +.b-slider-item { + position: absolute; + z-index: 50; + float: left; + overflow: hidden; + margin: 0; + padding: 0; + width: 725px; + height: 360px; +} + +.m-slider-current { + z-index: 100; +} + +.b-slider-item__img, +.b-slider-item__title, +.b-slider-item__text { + position: absolute; +} + +.b-slider-item__img { + top: 0; + left: 0; + text-decoration: none; +} + +.b-slider-item__link { + +} + +.b-slider-item__title { + bottom: 10px; + left: 10px; + width: 500px; + color: #333; + text-transform: uppercase; + text-shadow: 0 0 3px #fff, 0 0 2px #fff, 0 0 1px #fff; + letter-spacing: -5px; + font-size: 65px; + font-family: Calibri; + line-height: 0.8em; +} + +.b-slider-item__text { + position: absolute; + top: 150px; + left: 300px; + display: inline-block; + display: none; + margin: -10px; + padding: 10px; + max-width: 300px; + border-radius: 10px; + background: rgba(255, 255, 255, 0.5); + box-shadow: 0 0 5px #fff; + color: #555; + line-height: 1.5em; +} + + +/* + ************************** + * =NAV + ************************** +*/ +.b-slider-nav { + position: absolute; + width: 100%; + top: 10px; + height: 30px; + left: 0; + z-index: 500; + display: block; + margin: 0; + padding: 0; + list-style-type: none; + text-align: center; +} + +.b-slider-nav-button { + display: inline-block; + margin: 5px; + width: 16px; + height: 16px; + border-radius: 8px; + background: #ddd; + color: transparent; + text-align: center; + font-weight: bold; + font-size: 8px; + line-height: 16px; + cursor: pointer; +} + +.b-slider-nav-button:hover { + background: #eee; +} + +.m-slider-nav-current_button { + background: #fff; +} + +.b-slider-nav-prev, +.b-slider-nav-next { + position: absolute; + top: 0; + z-index: 500; + padding-right: 20px; + padding-left: 20px; + color: #000; + text-shadow: 0 0 3px #fff, 0 0 2px #fff, 0 0 1px #fff; + font-size: 50px; + font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; + line-height: 360px; + opacity: 0.5; + cursor: pointer; +} + +.b-slider-nav-prev:hover, +.b-slider-nav-next:hover { + opacity: 0.8; +} + +.b-slider-nav-prev { + left: 0; + padding-left: 0; +} + +.b-slider-nav-next { + right: 0; + padding-right: 0; +} diff --git a/expobanner/static/banners/js/log.js b/expobanner/static/banners/js/log.js new file mode 100644 index 00000000..eed8e2a1 --- /dev/null +++ b/expobanner/static/banners/js/log.js @@ -0,0 +1,10 @@ + +$(document).ready(function() { + $('.b-banner-click').on('click', function(){ + $.get($(this).data('url')); + }); + + $(".b-banner").on('load', function() { + $.get($(this).data('view')); + }); +}); diff --git a/expobanner/static/banners/js/slider.js b/expobanner/static/banners/js/slider.js new file mode 100644 index 00000000..34769495 --- /dev/null +++ b/expobanner/static/banners/js/slider.js @@ -0,0 +1,71 @@ +$.fn.bannersSlider = function(options) { + $this = this; + var settings = $.extend( { + 'auto_play': false, + 'effect': 'fade', + 'speed' : 3000 + }, options); + + $this.current = 1; + $this.old = 1; + $this.len = $this.find('.b-slider-list li').length; + + $this.find('.b-slider-item').hide(); + $this.find('.m-slider-item-1').show(); + + $this.fadeTo = function(new_num) { + old_num = $this.old; + if (new_num != old_num) { + $this.find('.m-slider-item-' + new_num).hide(); + $this.find('.m-slider-item-' + new_num).fadeIn(1000); + $this.find('.m-slider-current').fadeOut(1000); + $this.find('.m-slider-current').removeClass('m-slider-current'); + $this.find('.m-slider-item-' + new_num).addClass('m-slider-current'); + + $this.find('.b-slider-nav-button').removeClass('m-slider-nav-current_button'); + + $this.find('.b-slider-nav-button[data-slide=' + new_num + ']').addClass('m-slider-nav-current_button'); + } + }; + + $this.prev = function() { + prev = ($this.current != 1) ? $this.current - 1 : $this.len; + $this.old = $this.current; + $this.current = prev; + + $this.fadeTo(prev); + }; + + $this.next = function() { + next = ($this.current != $this.len) ? $this.current + 1 : 1; + $this.old = $this.current; + $this.current = next; + + $this.fadeTo(next); + }; + + $this.children('.b-slider-nav-prev').on('click', function(){ + $this.prev(); + }); + + $this.children('.b-slider-nav-next').on('click', function(){ + $this.next(); + }); + + $this.find('.b-slider-nav-button').on('click', function(){ + to_slide = $(this).data('slide'); + + $this.old = $this.current; + $this.current = to_slide; + + $this.fadeTo(to_slide); + }); + + if (settings.auto_play) { + setInterval(function() { + $this.next(); + }, settings.speed); + } + + return $this; +}; diff --git a/expobanner/templates/banner.html b/expobanner/templates/banner.html new file mode 100644 index 00000000..85f460e1 --- /dev/null +++ b/expobanner/templates/banner.html @@ -0,0 +1,55 @@ +{% if banner.html %} + {% load banner %} + +{% elif banner.flash %} + + + +{% else %} + +{% endif %} + + \ No newline at end of file diff --git a/expobanner/templates/grid.html b/expobanner/templates/grid.html new file mode 100644 index 00000000..9571fd2d --- /dev/null +++ b/expobanner/templates/grid.html @@ -0,0 +1,32 @@ +{% load banner %} + +
+ {% for banner in banners %} + {% banner_one banner.id %} + {% endfor %} +
+ + \ No newline at end of file diff --git a/expobanner/templates/group.html b/expobanner/templates/group.html new file mode 100644 index 00000000..36800ccc --- /dev/null +++ b/expobanner/templates/group.html @@ -0,0 +1,30 @@ +{% load banner %} + +
+ {% for banner in banners %} + {% banner_one banner.id %} + {% endfor %} + +
\ No newline at end of file diff --git a/expobanner/templates/slider.html b/expobanner/templates/slider.html new file mode 100644 index 00000000..e2dd73ac --- /dev/null +++ b/expobanner/templates/slider.html @@ -0,0 +1,74 @@ +{% load thumbnail %} + +{% if banners %} + +
+ + +
    + {% for banner in banners %} +
  • + {{ forloop.counter }} +
  • + {% endfor %} +
+ + 〈   +   〉 + +
+ + + + + +{% endif %} \ No newline at end of file diff --git a/expobanner/templatetags/__init__.py b/expobanner/templatetags/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/expobanner/templatetags/banner.py b/expobanner/templatetags/banner.py new file mode 100644 index 00000000..f7257f1c --- /dev/null +++ b/expobanner/templatetags/banner.py @@ -0,0 +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' diff --git a/expobanner/tests.py b/expobanner/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/expobanner/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/expobanner/urls.py b/expobanner/urls.py new file mode 100644 index 00000000..126ae232 --- /dev/null +++ b/expobanner/urls.py @@ -0,0 +1,11 @@ +from django.conf.urls import url + +from . import views + +urlpatterns = [ + url(r'^click/(?P\d{1,4})/(?P[-\w]+)/$', views.click, name='banner_click'), + url(r'^view/(?P\d+)/(?P[-\w]+)/$', views.view, name='banner_view'), + + # + url(r'^get-banners/$', views.get_banners), +] diff --git a/expobanner/views.py b/expobanner/views.py new file mode 100644 index 00000000..903408ea --- /dev/null +++ b/expobanner/views.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +import json +from django.http import HttpResponse +from django.shortcuts import redirect, get_object_or_404 +from .models import Banner, BannerGroup + + +def click(request, banner_id, key): + banner = get_object_or_404(Banner, pk=banner_id) + banner.log(request, 2, key) + return redirect(banner.url) + + +def view(request, banner_id, key): + banner = get_object_or_404(Banner, pk=banner_id) + banner.log(request, 1, key) + return redirect(banner.img.url) + + +def get_client_ip(request): + x_forwarded_for = request.META.get('HTTP_X_FORWARDED_FOR') + if x_forwarded_for: + ip = x_forwarded_for.split(',')[0] + else: + ip = request.META.get('REMOTE_ADDR') + return ip + +def get_banners(request): + url = request.GET.get('url', '/') + theme = request.GET.get('theme') + country = request.GET.get('country') + city = request.GET.get('city') + tag = request.GET.get('tag') + ip = get_client_ip(request) + params = {'url': url, + 'theme': theme, + 'tag': tag, + 'country': country, + 'city': city, + 'ip': ip} + b = Banner.objects.get(id=1) + result = [{'url': b.url, 'id': 'expo_b_%d'%b.id, 'is_html': b.html, + 'is_flash': b.flash, 'is_img': True, 'html': b.text, 'img': b.img.url}] + return HttpResponse(json.dumps(result, indent=4), content_type='application/json') + + 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/proj/decorators.py b/proj/decorators.py new file mode 100644 index 00000000..149b9358 --- /dev/null +++ b/proj/decorators.py @@ -0,0 +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 + return decorator \ No newline at end of file diff --git a/templates/admin/accounts/user_change.html b/templates/admin/accounts/user_change.html index 2b31a009..f7b40762 100644 --- a/templates/admin/accounts/user_change.html +++ b/templates/admin/accounts/user_change.html @@ -23,8 +23,20 @@ } }); return false; + }); + $('#gen_pass').click(function(){ + $('#id_new_password').val(generatePassword()); }) - }) + }); + function generatePassword() { + var length = 8, + charset = "abcdefghijklnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", + retVal = ""; + for (var i = 0, n = charset.length; i < length; ++i) { + retVal += charset.charAt(Math.floor(Math.random() * n)); + } + return retVal; + } ").appendTo("head")})})(window,document,jQuery); \ No newline at end of file diff --git a/templates/client/wizard/first_step.html b/templates/client/wizard/first_step.html new file mode 100644 index 00000000..b71e8518 --- /dev/null +++ b/templates/client/wizard/first_step.html @@ -0,0 +1,218 @@ +{% 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 %} diff --git a/templates/client/wizard/second_step.html b/templates/client/wizard/second_step.html new file mode 100644 index 00000000..5e75559b --- /dev/null +++ b/templates/client/wizard/second_step.html @@ -0,0 +1,310 @@ +{% 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 %} + +{% endblock %} \ No newline at end of file diff --git a/templates/client/wizard/wizard.html b/templates/client/wizard/wizard.html new file mode 100644 index 00000000..0fc0748c --- /dev/null +++ b/templates/client/wizard/wizard.html @@ -0,0 +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 %} + +
+{% endblock %} \ No newline at end of file diff --git a/templates/done.html b/templates/done.html new file mode 100644 index 00000000..1f404dc1 --- /dev/null +++ b/templates/done.html @@ -0,0 +1 @@ +{{form_data}} \ No newline at end of file diff --git a/templates/registration/acquire_email.html b/templates/registration/acquire_email.html new file mode 100644 index 00000000..17a0c5f0 --- /dev/null +++ b/templates/registration/acquire_email.html @@ -0,0 +1,27 @@ +{% extends "client/base_page.html" %} + +{% block title %}Email confirmation{% endblock %} + +{% block page_body %} + +

Enter your email

+ +{% if form.errors %} +

Please correct the errors below:

+{% endif %} +
{% csrf_token %} +
+
+ + +{# #} +
+
+ +
+ +{% endblock %} + +{% block content-related %} +

Please enter your valid email, to activate account we will send you an email on this e-mail address

+{% endblock %} \ No newline at end of file diff --git a/templates/registration/social_registration_complete.html b/templates/registration/social_registration_complete.html new file mode 100644 index 00000000..755add9b --- /dev/null +++ b/templates/registration/social_registration_complete.html @@ -0,0 +1,8 @@ +{% extends "client/base_page.html" %} + +{% block title %}Registration complete{% endblock %} + +{% block page_body %} +

Check your email

+

An activation link has been sent to the email address you supplied, along with instructions for activating your account.

+{% endblock %} \ No newline at end of file diff --git a/wizard/__init__.py b/wizard/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/wizard/forms.py b/wizard/forms.py new file mode 100644 index 00000000..e60e10ec --- /dev/null +++ b/wizard/forms.py @@ -0,0 +1,65 @@ +# -*- 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':'дд.мм.гг'})) + diff --git a/wizard/models.py b/wizard/models.py new file mode 100644 index 00000000..71a83623 --- /dev/null +++ b/wizard/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/wizard/tests.py b/wizard/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/wizard/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/wizard/urls.py b/wizard/urls.py new file mode 100644 index 00000000..188c3901 --- /dev/null +++ b/wizard/urls.py @@ -0,0 +1,8 @@ +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 diff --git a/wizard/views.py b/wizard/views.py new file mode 100644 index 00000000..30a3ad5a --- /dev/null +++ b/wizard/views.py @@ -0,0 +1,89 @@ +from django.shortcuts import render_to_response +from django.contrib.formtools.wizard.views import SessionWizardView +from django.core.files.storage import default_storage, FileSystemStorage +import os +from proj import settings +from wizard import forms +from exposition.models import Exposition, Statistic +from functions.form_check import translit_with_separator + + +# defining different template for every form +TEMPLATES = {'0':'client/wizard/first_step.html', '1':'client/wizard/second_step.html'} + + + +class ExpoWizard(SessionWizardView): + location=os.path.join(settings.MEDIA_ROOT, 'temp', 'files') + file_storage = FileSystemStorage(location, settings.MEDIA_URL) + + def done(self, form_list, **kwargs): + upload_file = form_list[0].cleaned_data['logo'] + 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 + ) + expo.tag = [data.get('tag')] + expo.theme = [data.get('theme')] + if data['membership1']: + expo.quality_label = (expo.quality_label| Exposition.quality_label.exporating) + if data['membership2']: + expo.quality_label = (expo.quality_label| Exposition.quality_label.rsva) + if data['membership3']: + expo.quality_label = (expo.quality_label| Exposition.quality_label.ufi) + + if data['audience1']: + expo.audience = (expo.audience | Exposition.audience.experts) + if data['audience2']: + expo.audience = expo.audience | getattr(Exposition.audience, 'experts and consumers') + 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]] + From 726bfde90158a43f680e0948b6b194505537bbbb Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 27 Aug 2015 17:42:21 +0300 Subject: [PATCH 02/16] Added file upload application --- accounts/admin.py | 2 +- fileupload/__init__.py | 0 fileupload/admin.py | 4 + fileupload/models.py | 29 + fileupload/response.py | 38 + fileupload/serialize.py | 38 + fileupload/templatetags/__init__.py | 0 fileupload/templatetags/upload_tags.py | 82 + fileupload/tests.py | 16 + fileupload/urls.py | 17 + fileupload/views.py | 62 + proj/settings.py | 3 +- proj/urls.py | 2 + registration/backends/default/views.py | 11 + .../file_upload/css/blueimp-gallery.min.css | 1 + static/file_upload/css/demo-ie8.css | 21 + static/file_upload/css/demo.css | 67 + .../css/jquery.fileupload-ui-noscript.css | 27 + .../file_upload/css/jquery.fileupload-ui.css | 68 + static/file_upload/css/style.css | 19 + static/file_upload/img/loading.gif | Bin 0 -> 3897 bytes static/file_upload/img/progressbar.gif | Bin 0 -> 3323 bytes static/file_upload/js/app.js | 106 ++ static/file_upload/js/bootstrap.min.js | 6 + static/file_upload/js/canvas-to-blob.min.js | 1 + .../js/cors/jquery.postmessage-transport.js | 118 ++ .../js/cors/jquery.xdr-transport.js | 87 ++ static/file_upload/js/csrf.js | 22 + .../js/jquery.blueimp-gallery.min.js | 1 + static/file_upload/js/jquery.cookie.js | 90 ++ .../js/jquery.fileupload-angular.js | 402 +++++ .../file_upload/js/jquery.fileupload-audio.js | 106 ++ .../file_upload/js/jquery.fileupload-image.js | 292 ++++ .../js/jquery.fileupload-jquery-ui.js | 138 ++ .../js/jquery.fileupload-process.js | 164 ++ static/file_upload/js/jquery.fileupload-ui.js | 643 ++++++++ .../js/jquery.fileupload-validate.js | 117 ++ .../file_upload/js/jquery.fileupload-video.js | 106 ++ static/file_upload/js/jquery.fileupload.js | 1336 +++++++++++++++++ .../file_upload/js/jquery.iframe-transport.js | 205 +++ static/file_upload/js/jquery.ui.widget.js | 282 ++++ static/file_upload/js/load-image.min.js | 1 + static/file_upload/js/locale.js | 29 + static/file_upload/js/main.js | 77 + static/file_upload/js/tmpl.min.js | 1 + .../file_upload/js/vendor/jquery.ui.widget.js | 530 +++++++ templates/client/base_catalog.html | 2 +- .../fileupload/picture_angular_form.html | 207 +++ .../fileupload/picture_basic_form.html | 130 ++ .../fileupload/picture_basicplus_form.html | 221 +++ .../fileupload/fileupload/picture_form.html | 102 ++ .../fileupload/picture_jquery_form.html | 255 ++++ templates/client/fileupload/upload_base.html | 52 + wizard/urls.py | 5 +- 54 files changed, 6336 insertions(+), 5 deletions(-) create mode 100644 fileupload/__init__.py create mode 100644 fileupload/admin.py create mode 100644 fileupload/models.py create mode 100644 fileupload/response.py create mode 100644 fileupload/serialize.py create mode 100644 fileupload/templatetags/__init__.py create mode 100644 fileupload/templatetags/upload_tags.py create mode 100644 fileupload/tests.py create mode 100644 fileupload/urls.py create mode 100644 fileupload/views.py create mode 100644 static/file_upload/css/blueimp-gallery.min.css create mode 100644 static/file_upload/css/demo-ie8.css create mode 100644 static/file_upload/css/demo.css create mode 100644 static/file_upload/css/jquery.fileupload-ui-noscript.css create mode 100644 static/file_upload/css/jquery.fileupload-ui.css create mode 100644 static/file_upload/css/style.css create mode 100644 static/file_upload/img/loading.gif create mode 100644 static/file_upload/img/progressbar.gif create mode 100644 static/file_upload/js/app.js create mode 100644 static/file_upload/js/bootstrap.min.js create mode 100644 static/file_upload/js/canvas-to-blob.min.js create mode 100644 static/file_upload/js/cors/jquery.postmessage-transport.js create mode 100644 static/file_upload/js/cors/jquery.xdr-transport.js create mode 100644 static/file_upload/js/csrf.js create mode 100644 static/file_upload/js/jquery.blueimp-gallery.min.js create mode 100644 static/file_upload/js/jquery.cookie.js create mode 100644 static/file_upload/js/jquery.fileupload-angular.js create mode 100644 static/file_upload/js/jquery.fileupload-audio.js create mode 100644 static/file_upload/js/jquery.fileupload-image.js create mode 100644 static/file_upload/js/jquery.fileupload-jquery-ui.js create mode 100644 static/file_upload/js/jquery.fileupload-process.js create mode 100644 static/file_upload/js/jquery.fileupload-ui.js create mode 100644 static/file_upload/js/jquery.fileupload-validate.js create mode 100644 static/file_upload/js/jquery.fileupload-video.js create mode 100644 static/file_upload/js/jquery.fileupload.js create mode 100644 static/file_upload/js/jquery.iframe-transport.js create mode 100644 static/file_upload/js/jquery.ui.widget.js create mode 100644 static/file_upload/js/load-image.min.js create mode 100644 static/file_upload/js/locale.js create mode 100644 static/file_upload/js/main.js create mode 100644 static/file_upload/js/tmpl.min.js create mode 100644 static/file_upload/js/vendor/jquery.ui.widget.js create mode 100644 templates/client/fileupload/fileupload/picture_angular_form.html create mode 100644 templates/client/fileupload/fileupload/picture_basic_form.html create mode 100644 templates/client/fileupload/fileupload/picture_basicplus_form.html create mode 100644 templates/client/fileupload/fileupload/picture_form.html create mode 100644 templates/client/fileupload/fileupload/picture_jquery_form.html create mode 100644 templates/client/fileupload/upload_base.html diff --git a/accounts/admin.py b/accounts/admin.py index ec8b1047..81eac80e 100644 --- a/accounts/admin.py +++ b/accounts/admin.py @@ -41,7 +41,7 @@ def user_change(request, url): # try get user by url if doesnt work by id if user is None: user = User.objects.safe_get(url=url) - #redirect to list of all users if cannot find user + # redirect to list of all users if cannot find user if user is None: return HttpResponseRedirect('/admin/accounts/all') diff --git a/fileupload/__init__.py b/fileupload/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/fileupload/admin.py b/fileupload/admin.py new file mode 100644 index 00000000..faa5cdc2 --- /dev/null +++ b/fileupload/admin.py @@ -0,0 +1,4 @@ +from fileupload.models import Picture +from django.contrib import admin + +admin.site.register(Picture) \ No newline at end of file diff --git a/fileupload/models.py b/fileupload/models.py new file mode 100644 index 00000000..1150bf0d --- /dev/null +++ b/fileupload/models.py @@ -0,0 +1,29 @@ +# encoding: utf-8 +from django.db import models + + +class Picture(models.Model): + """This is a small demo using just two fields. The slug field is really not + necessary, but makes the code simpler. ImageField depends on PIL or + pillow (where Pillow is easily installable in a virtualenv. If you have + problems installing pillow, use a more generic FileField instead. + + """ + file = models.ImageField(upload_to="wizard_pictures") + slug = models.SlugField(max_length=50, blank=True) + + def __unicode__(self): + return self.file.name + + @models.permalink + def get_absolute_url(self): + return ('upload-new', ) + + def save(self, *args, **kwargs): + self.slug = self.file.name + super(Picture, self).save(*args, **kwargs) + + def delete(self, *args, **kwargs): + """delete -- Remove to leave file.""" + self.file.delete(False) + super(Picture, self).delete(*args, **kwargs) diff --git a/fileupload/response.py b/fileupload/response.py new file mode 100644 index 00000000..334eb29e --- /dev/null +++ b/fileupload/response.py @@ -0,0 +1,38 @@ +# encoding: utf-8 +from django.http import HttpResponse +import json + +MIMEANY = '*/*' +MIMEJSON = 'application/json' +MIMETEXT = 'text/plain' + + +def response_mimetype(request): + """response_mimetype -- Return a proper response mimetype, accordingly to + what the client accepts, as available in the `HTTP_ACCEPT` header. + + request -- a HttpRequest instance. + + """ + can_json = MIMEJSON in request.META['HTTP_ACCEPT'] + can_json |= MIMEANY in request.META['HTTP_ACCEPT'] + return MIMEJSON if can_json else MIMETEXT + + +class JSONResponse(HttpResponse): + """JSONResponse -- Extends HTTPResponse to handle JSON format response. + + This response can be used in any view that should return a json stream of + data. + + Usage: + + def a_iew(request): + content = {'key': 'value'} + return JSONResponse(content, mimetype=response_mimetype(request)) + + """ + def __init__(self, obj='', json_opts=None, mimetype=MIMEJSON, *args, **kwargs): + json_opts = json_opts if isinstance(json_opts, dict) else {} + content = json.dumps(obj, **json_opts) + super(JSONResponse, self).__init__(content, mimetype, *args, **kwargs) diff --git a/fileupload/serialize.py b/fileupload/serialize.py new file mode 100644 index 00000000..4494e79f --- /dev/null +++ b/fileupload/serialize.py @@ -0,0 +1,38 @@ +# encoding: utf-8 +import mimetypes +import re +from django.core.urlresolvers import reverse + + +def order_name(name): + """order_name -- Limit a text to 20 chars length, if necessary strips the + middle of the text and substitute it for an ellipsis. + + name -- text to be limited. + + """ + name = re.sub(r'^.*/', '', name) + if len(name) <= 20: + return name + return name[:10] + "..." + name[-7:] + + +def serialize(instance, file_attr='file'): + """serialize -- Serialize a Picture instance into a dict. + + instance -- Picture instance + file_attr -- attribute name that contains the FileField or ImageField + + """ + obj = getattr(instance, file_attr) + return { + 'url': obj.url, + 'name': order_name(obj.name), + 'type': mimetypes.guess_type(obj.path)[0] or 'image/png', + 'thumbnailUrl': obj.url, + 'size': obj.size, + 'deleteUrl': reverse('upload-delete', args=[instance.pk]), + 'deleteType': 'DELETE', + } + + diff --git a/fileupload/templatetags/__init__.py b/fileupload/templatetags/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/fileupload/templatetags/upload_tags.py b/fileupload/templatetags/upload_tags.py new file mode 100644 index 00000000..d492e0ba --- /dev/null +++ b/fileupload/templatetags/upload_tags.py @@ -0,0 +1,82 @@ +from django import template + +register = template.Library() + +@register.simple_tag +def upload_js(): + return """ + + + + +""" + + + + + + diff --git a/fileupload/tests.py b/fileupload/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/fileupload/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/fileupload/urls.py b/fileupload/urls.py new file mode 100644 index 00000000..27dbdd1e --- /dev/null +++ b/fileupload/urls.py @@ -0,0 +1,17 @@ +# encoding: utf-8 +from django.conf.urls import patterns, url +from fileupload.views import ( + BasicVersionCreateView, BasicPlusVersionCreateView, + jQueryVersionCreateView, AngularVersionCreateView, + PictureCreateView, PictureDeleteView, PictureListView, + ) + +urlpatterns = patterns('', + # url(r'^basic/$', BasicVersionCreateView.as_view(), name='upload-basic'), + # url(r'^basic/plus/$', BasicPlusVersionCreateView.as_view(), name='upload-basic-plus'), + url(r'^new/$', PictureCreateView.as_view(), name='upload-new'), + # url(r'^angular/$', AngularVersionCreateView.as_view(), name='upload-angular'), + # url(r'^jquery-ui/$', jQueryVersionCreateView.as_view(), name='upload-jquery'), + url(r'^delete/(?P\d+)$', PictureDeleteView.as_view(), name='upload-delete'), + url(r'^view/$', PictureListView.as_view(), name='upload-view'), +) diff --git a/fileupload/views.py b/fileupload/views.py new file mode 100644 index 00000000..360c1933 --- /dev/null +++ b/fileupload/views.py @@ -0,0 +1,62 @@ +# encoding: utf-8 +import json + +from django.http import HttpResponse +from django.views.generic import CreateView, DeleteView, ListView +from .models import Picture +from .response import JSONResponse, response_mimetype +from .serialize import serialize + + +class PictureCreateView(CreateView): + model = Picture + fields = "__all__" + template_name = 'client/fileupload/fileupload/picture_form.html' + + def form_valid(self, form): + self.object = form.save() + files = [serialize(self.object)] + data = {'files': files} + response = JSONResponse(data, mimetype=response_mimetype(self.request)) + response['Content-Disposition'] = 'inline; filename=files.json' + return response + + def form_invalid(self, form): + data = json.dumps(form.errors) + return HttpResponse(content=data, status=400, content_type='application/json') + +class BasicVersionCreateView(PictureCreateView): + template_name = 'client/fileupload/fileupload/picture_basic_form.html' + + +class BasicPlusVersionCreateView(PictureCreateView): + template_name = 'client/fileupload/fileupload/picture_basicplus_form.html' + +class AngularVersionCreateView(PictureCreateView): + template_name = 'client/fileupload/fileupload/picture_angular_form.html' + + +class jQueryVersionCreateView(PictureCreateView): + template_name = 'client/fileupload/fileupload/picture_jquery_form.html' + + +class PictureDeleteView(DeleteView): + model = Picture + + def delete(self, request, *args, **kwargs): + self.object = self.get_object() + self.object.delete() + response = JSONResponse(True, mimetype=response_mimetype(request)) + response['Content-Disposition'] = 'inline; filename=files.json' + return response + + +class PictureListView(ListView): + model = Picture + + def render_to_response(self, context, **response_kwargs): + files = [ serialize(p) for p in self.get_queryset() ] + data = {'files': files} + response = JSONResponse(data, mimetype=response_mimetype(self.request)) + response['Content-Disposition'] = 'inline; filename=files.json' + return response diff --git a/proj/settings.py b/proj/settings.py index 1268efa5..fff456c2 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -315,7 +315,8 @@ INSTALLED_APPS = ( 'pymorphy', # ?? 'password_reset', # reset password 'django_crontab', # crons - 'social.apps.django_app.default', # social auth + 'social.apps.django_app.default', # social auth, + 'fileupload', ) diff --git a/proj/urls.py b/proj/urls.py index c73029c6..f0f15a91 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}), diff --git a/registration/backends/default/views.py b/registration/backends/default/views.py index b1edd557..29721193 100644 --- a/registration/backends/default/views.py +++ b/registration/backends/default/views.py @@ -249,6 +249,9 @@ def LoginView(request): HttpResponseRedirect('/') from accounts.forms import RegistrationCompleteForm, RecoveryForm +from django.shortcuts import render + + def complete_registration(request): if request.is_ajax(): response = {'success': False} @@ -264,6 +267,14 @@ def complete_registration(request): else: return HttpResponse('not ajax') +def acquire_email(request, template_name="registration/acquire_email.html"): + """ + Request email for the create user flow for logins that don't specify their email address. + """ + backend = request.session['partial_pipeline']['backend'] + return render(request, template_name, {"backend": backend}) + + def pswd_recovery(request): #if request.is_ajax(): response = {'success': False} diff --git a/static/file_upload/css/blueimp-gallery.min.css b/static/file_upload/css/blueimp-gallery.min.css new file mode 100644 index 00000000..7cfad0c4 --- /dev/null +++ b/static/file_upload/css/blueimp-gallery.min.css @@ -0,0 +1 @@ +@charset 'UTF-8';.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.slide-content{margin:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery{position:fixed;z-index:9999;overflow:hidden;background:#000;background:rgba(0,0,0,0.9);opacity:0;visibility:hidden;display:none;direction:ltr;-ms-touch-action:none}.blueimp-gallery-carousel{position:relative;z-index:auto;height:432px;max-width:768px;margin:1em auto;box-shadow:0 0 10px #000}.blueimp-gallery-display{display:block;visibility:visible;opacity:1}.blueimp-gallery>.slides{position:relative;height:100%;overflow:hidden}.blueimp-gallery>.slides>.slide{position:relative;float:left;height:100%;text-align:center;-webkit-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-moz-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-ms-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-o-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);transition-timing-function:cubic-bezier(0.645,0.045,0.355,1)}.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-transition:opacity .5s linear;-moz-transition:opacity .5s linear;-ms-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear}.blueimp-gallery>.slides>.slide-loading{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}.blueimp-gallery>.slides>.slide-loading>.slide-content{opacity:0}.blueimp-gallery>.slides>.slide-error{background:url(../img/error.png) center no-repeat}.blueimp-gallery>.slides>.slide-error>.slide-content{display:none}.blueimp-gallery>.prev,.blueimp-gallery>.next{position:absolute;top:50%;left:15px;width:40px;height:40px;margin-top:-23px;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-decoration:none;text-shadow:0 0 2px #000;text-align:center;background:#222;background:rgba(0,0,0,0.5);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;cursor:pointer;display:none}.blueimp-gallery>.next{left:auto;right:15px}.blueimp-gallery>.close,.blueimp-gallery>.title{position:absolute;top:15px;left:15px;margin:0 40px 0 0;font-size:20px;line-height:30px;color:#fff;text-shadow:0 0 2px #000;opacity:.8;display:none}.blueimp-gallery>.close{padding:15px;right:15px;left:auto;margin:-15px;font-size:30px;text-decoration:none;cursor:pointer}.blueimp-gallery>.play-pause{position:absolute;right:15px;bottom:15px;width:15px;height:15px;background:url(../img/play-pause.png) 0 0 no-repeat;cursor:pointer;opacity:.5;display:none}.blueimp-gallery-playing>.play-pause{background-position:-15px 0}.blueimp-gallery-controls>.prev,.blueimp-gallery-controls>.next,.blueimp-gallery-controls>.close,.blueimp-gallery-controls>.title,.blueimp-gallery-controls>.play-pause{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.prev,.blueimp-gallery-left>.prev,.blueimp-gallery-single>.next,.blueimp-gallery-right>.next,.blueimp-gallery-single>.play-pause{display:none}.blueimp-gallery>.slides>.slide>.slide-content,.blueimp-gallery>.prev,.blueimp-gallery>.next,.blueimp-gallery>.close,.blueimp-gallery>.play-pause{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body:last-child .blueimp-gallery>.slides>.slide-error{background-image:url(../img/error.svg)}body:last-child .blueimp-gallery>.play-pause{width:20px;height:20px;background-size:40px 20px;background-image:url(../img/play-pause.svg)}body:last-child .blueimp-gallery-playing>.play-pause{background-position:-20px 0}@media(max-width:767px){.blueimp-gallery-carousel{height:270px;max-width:480px}}*+html .blueimp-gallery>.slides>.slide{min-height:300px}*+html .blueimp-gallery>.slides>.slide>.slide-content{position:relative}.blueimp-gallery>.indicator{position:absolute;top:auto;right:15px;bottom:15px;left:15px;margin:0 40px;padding:0;list-style:none;text-align:center;line-height:10px;display:none}.blueimp-gallery>.indicator>li{display:inline-block;width:9px;height:9px;margin:6px 3px 0 3px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:1px solid transparent;background:#ccc;background:rgba(255,255,255,0.25) center no-repeat;border-radius:5px;box-shadow:0 0 2px #000;opacity:.5;cursor:pointer}.blueimp-gallery>.indicator>.active{background-color:#fff;border-color:#fff;opacity:.8}.blueimp-gallery-controls>.indicator{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.indicator{display:none}.blueimp-gallery>.indicator{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}*+html .blueimp-gallery>.indicator>li{display:inline}.blueimp-gallery>.slides>.slide>.video-content>video,.blueimp-gallery>.slides>.slide>.video-content>img{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.video-content>video,.blueimp-gallery>.slides>.slide>.video-content>img{margin:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery>.slides>.slide>.video-content>a{position:absolute;top:50%;right:0;left:0;margin:-64px auto 0;width:128px;height:128px;background:url(../img/video-play.png) center no-repeat;opacity:.8;cursor:pointer}.blueimp-gallery>.slides>.slide>.video-playing>a,.blueimp-gallery>.slides>.slide>.video-playing>img{display:none}.blueimp-gallery>.slides>.slide>.video-content>video{display:none}.blueimp-gallery>.slides>.slide>.video-playing>video{display:block}.blueimp-gallery>.slides>.slide>.video-loading>a{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}body:last-child .blueimp-gallery>.slides>.slide>.video-content>a{background-image:url(../img/video-play.svg)}*+html .blueimp-gallery>.slides>.slide>.video-content{height:100%}*+html .blueimp-gallery>.slides>.slide>.video-content>a{left:50%;margin-left:-64px} \ No newline at end of file diff --git a/static/file_upload/css/demo-ie8.css b/static/file_upload/css/demo-ie8.css new file mode 100644 index 00000000..262493d0 --- /dev/null +++ b/static/file_upload/css/demo-ie8.css @@ -0,0 +1,21 @@ +@charset "UTF-8"; +/* + * jQuery File Upload Demo CSS Fixes for IE<9 1.0.0 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +.navigation { + list-style: none; + padding: 0; + margin: 1em 0; +} +.navigation li { + display: inline; + margin-right: 10px; +} diff --git a/static/file_upload/css/demo.css b/static/file_upload/css/demo.css new file mode 100644 index 00000000..841f80d1 --- /dev/null +++ b/static/file_upload/css/demo.css @@ -0,0 +1,67 @@ +@charset "UTF-8"; +/* + * jQuery File Upload Demo CSS 1.0.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +body { + max-width: 750px; + margin: 0 auto; + padding: 1em; + font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; + font-size: 1em; + line-height: 1.4em; + background: #222; + color: #fff; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} +a { + color: orange; + text-decoration: none; +} +img { + border: 0; + vertical-align: middle; +} +h1 { + line-height: 1em; +} +blockquote { + padding: 0 0 0 15px; + margin: 0 0 20px; + border-left: 5px solid #eee; +} +table { + width: 100%; + margin: 10px 0; +} + +.fileupload-progress { + margin: 10px 0; +} +.fileupload-progress .progress-extended { + margin-top: 5px; +} +.error { + color: red; +} + +@media (min-width: 481px) { + .navigation { + list-style: none; + padding: 0; + } + .navigation li { + display: inline-block; + } + .navigation li:not(:first-child):before { + content: '| '; + } +} diff --git a/static/file_upload/css/jquery.fileupload-ui-noscript.css b/static/file_upload/css/jquery.fileupload-ui-noscript.css new file mode 100644 index 00000000..c4504855 --- /dev/null +++ b/static/file_upload/css/jquery.fileupload-ui-noscript.css @@ -0,0 +1,27 @@ +@charset "UTF-8"; +/* + * jQuery File Upload UI Plugin NoScript CSS 1.0 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2012, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +.fileinput-button input { + position: static; + opacity: 1; + filter: none; + transform: none; + font-size: inherit; + direction: inherit; +} + +.fileinput-button span, +.fileinput-button i, +.fileupload-buttonbar .delete, +.fileupload-buttonbar .toggle { + display: none; +} diff --git a/static/file_upload/css/jquery.fileupload-ui.css b/static/file_upload/css/jquery.fileupload-ui.css new file mode 100644 index 00000000..f81b34c7 --- /dev/null +++ b/static/file_upload/css/jquery.fileupload-ui.css @@ -0,0 +1,68 @@ +@charset "UTF-8"; +/* + * jQuery File Upload UI Plugin CSS 8.8.1 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +.fileinput-button { + position: relative; + overflow: hidden; +} +.fileinput-button input { + position: absolute; + top: 0; + right: 0; + margin: 0; + opacity: 0; + filter: alpha(opacity=0); + transform: translate(-300px, 0) scale(4); + font-size: 23px; + direction: ltr; + cursor: pointer; +} +.fileupload-buttonbar .btn, +.fileupload-buttonbar .toggle { + margin-bottom: 5px; +} +.progress-animated .progress-bar, +.progress-animated .bar { + background: url(../img/progressbar.gif) !important; + filter: none; +} +.fileupload-loading { + float: right; + width: 32px; + height: 32px; + background: url(../img/loading.gif) center no-repeat; + background-size: contain; + display: none; +} +.fileupload-processing .fileupload-loading { + display: block; +} +.files audio, +.files video { + max-width: 300px; +} + +@media (max-width: 767px) { + .fileupload-buttonbar .toggle, + .files .toggle, + .files .btn span { + display: none; + } + .files .name { + width: 80px; + word-wrap: break-word; + } + .files audio, + .files video { + max-width: 80px; + } +} diff --git a/static/file_upload/css/style.css b/static/file_upload/css/style.css new file mode 100644 index 00000000..6f1a7f2d --- /dev/null +++ b/static/file_upload/css/style.css @@ -0,0 +1,19 @@ +@charset "UTF-8"; +/* + * jQuery File Upload Plugin CSS Example 8.8.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +body { + padding-top: 60px; +} + +.preview img { + max-height:50px; +} \ No newline at end of file diff --git a/static/file_upload/img/loading.gif b/static/file_upload/img/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..90f28cbdbb390b095e0d619cbe8d91208798e58f GIT binary patch literal 3897 zcmZvfcR1T?8^ABwb_x$y{p1+>Yb$`dLr?0DW)y5y-57+?!PEJmyrlv?FQgU)K z^$+m(2RfoVbqYWS0G%+J=-j=drD>|8AS+KxL%o*)0)PM?>H*Mx2iHt~mnWZ=N>W+t zB|S>mk9=ZpYXc!T7UZI&`(-T$A=k$fH%{0DUBGwg!#nk?dE^E3gDApBHVTIQQFjd% z@8i*q&q?bJ^`q%$4G<}clybdVd-s{xsx+KupPg;W4bOvd7w*pJ;3oEg_PFlG;yL8+oShz**1=iDRZ*E(Q<#5R=A*XP5H_Y=1xJoCem%-&eKb6zV0ff z>legqW&{=3KP~Y8@#^3-+sNyevrSganP&X1J3*?KZrnP&@8z-DF>$5H-D+bme&k}k z=b(j;=N4)0R8Q6PZLj2pkrz)`V_M!E?dlE7mCX3opU@wz96Zurx4FmWL37=7TCuG9 z`GkMU?-=3W2u(X1pJ+1-D8$#M3IyxB%pDQB;2(M(eo?G5D~tz~6dTT3ItGfkWI&$< z&#Xo;(n_Kq+TlC@hpWm<{qK@(J8G++We#hbNi^se<6nV2;T4 zNDqriR!3dHvF711Txh1!vT{};LzV^uLH;6l)wR@$;KDJa`VOrZ+ccMJt-r043s&2t^bewdCj@xurE^v)WL95dQ z!~&h-7Yqg)+cJl7{=U2?_+E7^{JVv*AQbVh@R_RBt12dDs-#^ZEg=TA;LKR69HAv*?v1IO*LrVkl0@jm)`Yw>Ei;Cb<`Ge=JHj9g^C7+M?`w@g>lBl#q%UG z`}!%t5@M1z}?nB z*Tj60Y$FR82XGHd41y*mrUDeYh38hddS#Y*SGE@ZP#F{1I^fy8Y9@AY`0m};Z?t1t zvl@XaOzm2oTG^`5GXjVpu-2S*n4*kB%YDv4k&aM?8%y+(ZsV3)1mZz23da;)wH@7&`|Ado=<=+Ih>-Zw;?kA^kOQDkl*L3<;+? z<|M0rPu_-Pn1S;!V&9?Lji{M@0Mr#T9>Bk`lq`z3P)1&h>Ho;*au|vDvsVjp-qT0e z*UUfQ?Gpz$g9n2bA}a7zWNb7tHVzcwml}2{C{dOsk47z6B0pahT~Ju4TqIILBp68& zNmxrkQf(GrV^cF{Yg;>8XC;}Vr=*X4p!6N-twSOZPz$&PLr@%}eIZ zD~Lt1l{LgdQhk+JLo-cX3#q!jvb?Lbps#;m@ZHexhyq{?ko#d0H90e$K08CzSlrS) zWo6dl)B48d)b`HU-u~MD$9uai7`L)G>3*T{10aZCYqqL(n*#FQw0j@zj_M(+#c zyVt!MW{V+4vZ?)+0bac?NfTw2K79`dH+R{6nT57bfL{LIoi7Ag$(vz$+eju9d$7B zJG&Z{dzkyk1G(>p`qfHW#%#yxr>AUYK0KOvygWa*I`naEY4hR2MjvI{YUR`Z@fYi( z@9Pv+(V>39D#Fg`k5 zAvd8jHQhWpvV^33oSVP7D7mS*y)&b|zlvB`kzM|}?rCIuU=S7LEHVa$xY zK7bdtLDWL^SFw^20+{?ObjZr9KUx(0o0SBj_xZyoID`D^`r^?VSAjk}{spA|BzpP` z*n{4_ZGkmTM)r5(MRv|pCYSwXX2mHCy0;?C3wFJlI=Ud1imCcH_f;o6U;m-fmBwF| zxeaFV_F$)h(s28}mNsGy`ZELug@>6%MYAH2>|xIMd-hlX4DyCpx2_fIxR&9HR| zOo=QmRf1OdI|P;~oA(JKyL+Po2Z!q-^EdYxV{T>gIls8gp+tex@r9h|)?()zIoc!` z<-T`fILv04Ax z`;g5e;{OrXwNr!u98>p5O4V$kGW+Q$xy7wyq-@a{rvp{O^`YL+YM=2l%U^u_1752E zp+H?P>LBTO+=z(KcG8T2As`wFiAndgQX_?Fb7*g8g`&_orui5i9PU;=s2FX6FR#co zE~~Dn%@VI68P?So8?|?o7*sXav^B}J^pd-Y`tL^zz~d9Gy3^POy}9|$k4r+sE2(Oq zblxd%Y40fR?Z;>w9%bM7>MRCe0$W>a1Ua)1%pg!3Ef2a&@`nE+@wdq?gKL=1$&mG5 zc=xRumn_dNMN(4+^D|}e-AyHhgXp*ONwPc4Gw0}8JwtWo>9B=>)bspG45{b5-#-%j z#bmSnf0`_jYO*x%*xv*H2=qB?SKiue@ymKb_UgCALL`qak+Q!sG{OTY*|7f zF|)MHlBhu2NPE6kwyB8|f2F;hBma7LM{kKLHEAkujx^eiH``22TTe~S&x|jOJYJkz zURwXOva!82K-vG?eb}>euy=GkG2A=!`dKFQr>UIzv90~@YW71c)Ya_7S_1LJKEn=2 za9pc*k?HqfnAE_>s??ukJY)v<(7$cFuo!w*RiJ0d-5_)cb6+|EH)TS4n7hww64>2( zX`J7xEP2C2?VS3M{VJ)C5ViP4(Z`>SCWHnQ7<3K_6^4f~Mj(aUsSP$sAU+{HDVa|% zjWr{KUyB;EnHVu#ZXuo!TYQ1qV?~J(RTVWMwIb943uEgYoSL4Q{n!XxSX^4BEKja{T3;I9*k1pzv%fm_`3SgoyubBr<2{X$I3cSkh@M@_ zva>k51!i{|%nxvFY7J+Rb3l)ox#Z|V1(l_kR#-t@$lq>-DPeX*yA#-ro8yw)#5xk? z+50S$Vwd${7o-V=V1Vdg4meiIid>Ez$~Vn1NH?g!jTGE3bC@Dm6pR*Gx184p0Mz~i D^>?LD literal 0 HcmV?d00001 diff --git a/static/file_upload/img/progressbar.gif b/static/file_upload/img/progressbar.gif new file mode 100644 index 0000000000000000000000000000000000000000..fbcce6bc9abfcc7893e65ef20b3e77ee16ec37b1 GIT binary patch literal 3323 zcmcK7eNYp38VB%=tbvu|O{=v;j+Z$Bg`>zI2IVD3Ovp-%sA$2LilR;|zMv9BB_t%- zylmcIh`dQLinJh9P{0Ja6I28#3PquysCf3GB1bBEXgfV_qnx8-n07k#kNmNdnVrvm zpZz`0v#~Ih7`{0em<2RA0wa|vr`!U1uI~v zF&O+zyfdOBoHdq{xOf7$)mN>lwcHgLVd-HT}JxYe94Gv(X_H__aHV~b7Ud4Pvk@t?84W?#& z+#WmNc5cUNoapyda#-P`2+n z-sGAbb$_$TW887}6BiJKaV$E-69{23pNeG2=_;8-CM9c*OiHOp|F9Igl_JQHqf)Y3 zhR7s(mQBh5ER~A&6^|p|OQqmd+(8 zZCb1qD*K}>!|B|YVuCsS=V0!N=?-)po(^$x*kptYX9N)B^~VJ^d7-@(M1WK;9&Liw~wO?NN(E}be} z`e0?=)*y}@Xkgx6S$ZS(8d|ifzK_`x?=N$)pWk;s0Ve?`qDX{%L@X0)6guz8Adh+qh(mq90aE=iAZp(dGccGHgmlkOke19p-dfci z@1Ni#x_B;&@l8icy*4roEXN?9&vh-w;n!Fp3;~Dn4#aOVi22tbo-KY@B1*TAgMsta zMh~68EXdvgJe$<9yOgn~E8aiQNo1$l`FUCI52J)nHW8+@|McSTe{t30@NpO^cv#waY+68ew4oT={#AGoA?Je^k$f`&u}bW zOjoRA_$utq5rspZ;5HXZvqE1#D) z5*M}9jPoq=-V*<cQuuK%yr=$XZl2k``40P4ol60hjb({{!c5Rtn3Urk4?uRRFNQuFGPhZnTBMO zu{W&|u4t53w>M}v(wtDAV!oHP(QY&~_X0qupII*-&GksTPf#SZ#4eaOCrG~hUblo4 zya(R){3rfyxiH2%l{iN;xS(G)OWOx8>UV9u+Vm_iN98oT20F}U!8utl4(lm=E)S6) zN~xM^Q?U;_!Ku4seH{bquy+4OfwlV{0C?tW&XteqJmP<|V)6eK9ey(~1Sbd1rgF1{ zd@&*xkriY}MS><}4DI}o3>d2jm74@fNpg-Vf(zPY?8nj=O8o$gp_gzr3~{MEs({T( z5+EcMIErR!`wwLZHp{c_?{mEhe%dlbNH8E^nm+5|owEXTR;S2+hYWR^j zWB!qbQWumI=vg;ZQvO$8W9QeMX~YdqNb^K%y~T6@tCTOlSM-j*$OOSSZX6cRfzPb* zP-Q}8v|6Q&$hAFfGA(f5>_XzuqhFP@h(0x@%#tsExSB}v(zy6^qc>xW*XCVMBPKf` zF>gsuD~+eKuRP{tWLo#OoJ2?fR@_0f5Olf}}Khc$ZhB$$3I7S9&n z^G{G0pQnju2Md}?zmbrthis.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(window.jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(''}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery); \ No newline at end of file diff --git a/static/file_upload/js/canvas-to-blob.min.js b/static/file_upload/js/canvas-to-blob.min.js new file mode 100644 index 00000000..7ee3553a --- /dev/null +++ b/static/file_upload/js/canvas-to-blob.min.js @@ -0,0 +1 @@ +!function(t){"use strict";var e=t.HTMLCanvasElement&&t.HTMLCanvasElement.prototype,n=t.Blob&&function(){try{return Boolean(new Blob)}catch(t){return!1}}(),o=n&&t.Uint8Array&&function(){try{return 100===new Blob([new Uint8Array(100)]).size}catch(t){return!1}}(),r=t.BlobBuilder||t.WebKitBlobBuilder||t.MozBlobBuilder||t.MSBlobBuilder,i=(n||r)&&t.atob&&t.ArrayBuffer&&t.Uint8Array&&function(t){var e,i,a,l,u,B;for(e=t.split(",")[0].indexOf("base64")>=0?atob(t.split(",")[1]):decodeURIComponent(t.split(",")[1]),i=new ArrayBuffer(e.length),a=new Uint8Array(i),l=0;l').prop('href', options.postMessage)[0], + target = loc.protocol + '//' + loc.host, + xhrUpload = options.xhr().upload; + return { + send: function (_, completeCallback) { + counter += 1; + var message = { + id: 'postmessage-transport-' + counter + }, + eventName = 'message.' + message.id; + iframe = $( + '' + ).bind('load', function () { + $.each(names, function (i, name) { + message[name] = options[name]; + }); + message.dataType = message.dataType.replace('postmessage ', ''); + $(window).bind(eventName, function (e) { + e = e.originalEvent; + var data = e.data, + ev; + if (e.origin === target && data.id === message.id) { + if (data.type === 'progress') { + ev = document.createEvent('Event'); + ev.initEvent(data.type, false, true); + $.extend(ev, data); + xhrUpload.dispatchEvent(ev); + } else { + completeCallback( + data.status, + data.statusText, + {postmessage: data.result}, + data.headers + ); + iframe.remove(); + $(window).unbind(eventName); + } + } + }); + iframe[0].contentWindow.postMessage( + message, + target + ); + }).appendTo(document.body); + }, + abort: function () { + if (iframe) { + iframe.remove(); + } + } + }; + } + }); + +})); diff --git a/static/file_upload/js/cors/jquery.xdr-transport.js b/static/file_upload/js/cors/jquery.xdr-transport.js new file mode 100644 index 00000000..d769f452 --- /dev/null +++ b/static/file_upload/js/cors/jquery.xdr-transport.js @@ -0,0 +1,87 @@ +/* + * jQuery XDomainRequest Transport Plugin 1.1.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2011, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + * + * Based on Julian Aubourg's ajaxHooks xdr.js: + * https://github.com/jaubourg/ajaxHooks/ + */ + +/*jslint unparam: true */ +/*global define, window, XDomainRequest */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define(['jquery'], factory); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + if (window.XDomainRequest && !$.support.cors) { + $.ajaxTransport(function (s) { + if (s.crossDomain && s.async) { + if (s.timeout) { + s.xdrTimeout = s.timeout; + delete s.timeout; + } + var xdr; + return { + send: function (headers, completeCallback) { + var addParamChar = /\?/.test(s.url) ? '&' : '?'; + function callback(status, statusText, responses, responseHeaders) { + xdr.onload = xdr.onerror = xdr.ontimeout = $.noop; + xdr = null; + completeCallback(status, statusText, responses, responseHeaders); + } + xdr = new XDomainRequest(); + // XDomainRequest only supports GET and POST: + if (s.type === 'DELETE') { + s.url = s.url + addParamChar + '_method=DELETE'; + s.type = 'POST'; + } else if (s.type === 'PUT') { + s.url = s.url + addParamChar + '_method=PUT'; + s.type = 'POST'; + } else if (s.type === 'PATCH') { + s.url = s.url + addParamChar + '_method=PATCH'; + s.type = 'POST'; + } + xdr.open(s.type, s.url); + xdr.onload = function () { + callback( + 200, + 'OK', + {text: xdr.responseText}, + 'Content-Type: ' + xdr.contentType + ); + }; + xdr.onerror = function () { + callback(404, 'Not Found'); + }; + if (s.xdrTimeout) { + xdr.ontimeout = function () { + callback(0, 'timeout'); + }; + xdr.timeout = s.xdrTimeout; + } + xdr.send((s.hasContent && s.data) || null); + }, + abort: function () { + if (xdr) { + xdr.onerror = $.noop(); + xdr.abort(); + } + } + }; + } + }); + } +})); diff --git a/static/file_upload/js/csrf.js b/static/file_upload/js/csrf.js new file mode 100644 index 00000000..aec99cc7 --- /dev/null +++ b/static/file_upload/js/csrf.js @@ -0,0 +1,22 @@ +// modify jquery ajax to add csrtoken when doing "local" requests +$('html').ajaxSend(function(event, xhr, settings) { + function getCookie(name) { + var cookieValue = null; + if (document.cookie && document.cookie != '') { + var cookies = document.cookie.split(';'); + for (var i = 0; i < cookies.length; i++) { + var cookie = jQuery.trim(cookies[i]); + // Does this cookie string begin with the name we want? + if (cookie.substring(0, name.length + 1) == (name + '=')) { + cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); + break; + } + } + } + return cookieValue; + } + if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) { + // Only send the token to relative URLs i.e. locally. + xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken')); + } +}); diff --git a/static/file_upload/js/jquery.blueimp-gallery.min.js b/static/file_upload/js/jquery.blueimp-gallery.min.js new file mode 100644 index 00000000..3aa02545 --- /dev/null +++ b/static/file_upload/js/jquery.blueimp-gallery.min.js @@ -0,0 +1 @@ +!function(t){"use strict";"function"==typeof define&&define.amd?define(["./blueimp-helper"],t):(window.blueimp=window.blueimp||{},window.blueimp.Gallery=t(window.blueimp.helper||window.jQuery))}(function(t){"use strict";function e(t,i){return t&&t.length&&void 0!==document.body.style.maxHeight?this&&this.options===e.prototype.options?(this.list=t,this.num=t.length,this.initOptions(i),this.initialize(),void 0):new e(t,i):!1}return t.extend(e.prototype,{options:{container:"#blueimp-gallery",slidesContainer:"div",titleElement:"h3",displayClass:"blueimp-gallery-display",controlsClass:"blueimp-gallery-controls",singleClass:"blueimp-gallery-single",leftEdgeClass:"blueimp-gallery-left",rightEdgeClass:"blueimp-gallery-right",playingClass:"blueimp-gallery-playing",slideClass:"slide",slideLoadingClass:"slide-loading",slideErrorClass:"slide-error",slideContentClass:"slide-content",toggleClass:"toggle",prevClass:"prev",nextClass:"next",closeClass:"close",playPauseClass:"play-pause",typeProperty:"type",titleProperty:"title",urlProperty:"href",clearSlides:!0,stretchImages:!1,toggleControlsOnReturn:!0,toggleSlideshowOnSpace:!0,enableKeyboardNavigation:!0,closeOnEscape:!0,closeOnSlideClick:!0,closeOnSwipeUpOrDown:!0,emulateTouchEvents:!0,hidePageScrollbars:!0,disableScroll:!0,carousel:!1,continuous:!0,unloadElements:!0,startSlideshow:!1,slideshowInterval:5e3,index:0,preloadRange:2,transitionSpeed:400,slideshowTransitionSpeed:void 0,event:void 0,onopen:void 0,onslide:void 0,onslideend:void 0,onslidecomplete:void 0,onclose:void 0},carouselOptions:{hidePageScrollbars:!1,toggleControlsOnReturn:!1,toggleSlideshowOnSpace:!1,enableKeyboardNavigation:!1,closeOnEscape:!1,closeOnSlideClick:!1,closeOnSwipeUpOrDown:!1,disableScroll:!1,startSlideshow:!0},support:function(t){var e,i,s,n={touch:void 0!==window.ontouchstart||window.DocumentTouch&&document instanceof DocumentTouch},o={webkitTransition:{end:"webkitTransitionEnd",prefix:"-webkit-"},MozTransition:{end:"transitionend",prefix:"-moz-"},OTransition:{end:"otransitionend",prefix:"-o-"},transition:{end:"transitionend",prefix:""}};for(e in o)if(o.hasOwnProperty(e)&&void 0!==t.style[e]){i=o[e],i.name=e,n.transition=i;break}return document.body.appendChild(t),i&&(e=i.name.slice(0,-9)+"ransform",void 0!==t.style[e]&&(t.style[e]="translateZ(0)",s=window.getComputedStyle(t).getPropertyValue(i.prefix+"transform"),n.transform={prefix:i.prefix,name:e,translate:!0,translateZ:s&&"none"!==s})),void 0!==t.style.backgroundSize&&(t.style.backgroundSize="contain",n.backgroundSize={contain:"contain"===window.getComputedStyle(t).getPropertyValue("background-size")}),document.body.removeChild(t),n}(document.createElement("div")),initialize:function(){return this.initStartIndex(),this.initWidget()===!1?!1:(this.initEventListeners(),this.options.onopen&&this.options.onopen.call(this),this.onslide(this.index),this.ontransitionend(),this.options.startSlideshow&&this.play(),void 0)},slide:function(t,e){window.clearTimeout(this.timeout);var i,s,n,o=this.index;if(o!==t&&1!==this.num){if(e||(e=this.options.transitionSpeed),this.support.transition){for(this.options.continuous||(t=this.circle(t)),i=Math.abs(o-t)/(o-t),this.options.continuous&&(s=i,i=-this.positions[this.circle(t)]/this.slideWidth,i!==s&&(t=-i*this.num+t)),n=Math.abs(o-t)-1;n;)n-=1,this.move(this.circle((t>o?t:o)-n-1),this.slideWidth*i,0);t=this.circle(t),this.move(o,this.slideWidth*i,e),this.move(t,0,e),this.options.continuous&&this.move(this.circle(t-i),-(this.slideWidth*i),0)}else t=this.circle(t),this.animate(o*-this.slideWidth,t*-this.slideWidth,e);this.onslide(t)}},getIndex:function(){return this.index},getNumber:function(){return this.num},prev:function(){(this.options.continuous||this.index)&&this.slide(this.index-1)},next:function(){(this.options.continuous||this.index1&&(this.timeout=this.setTimeout(this.slide,[this.index+1,this.options.slideshowTransitionSpeed],this.interval)),this.container.addClass(this.options.playingClass)},pause:function(){window.clearTimeout(this.timeout),this.interval=null,this.container.removeClass(this.options.playingClass)},add:function(t){var e;for(this.list=this.list.concat(t),this.num=this.list.length,this.num>2&&null===this.options.continuous&&(this.options.continuous=!0,this.container.removeClass(this.options.leftEdgeClass)),this.container.removeClass(this.options.rightEdgeClass).removeClass(this.options.singleClass),e=this.num-t.length;ei?(s.slidesContainer[0].style.left=e+"px",s.ontransitionend(),window.clearInterval(o),void 0):(s.slidesContainer[0].style.left=(e-t)*(Math.floor(100*(l/i))/100)+t+"px",void 0)},4)},preventDefault:function(t){t.preventDefault?t.preventDefault():t.returnValue=!1},onresize:function(){this.initSlides(!0)},onmousedown:function(t){t.which&&1===t.which&&(t.preventDefault(),(t.originalEvent||t).touches=[{pageX:t.pageX,pageY:t.pageY}],this.ontouchstart(t))},onmousemove:function(t){this.touchStart&&((t.originalEvent||t).touches=[{pageX:t.pageX,pageY:t.pageY}],this.ontouchmove(t))},onmouseup:function(t){this.touchStart&&(this.ontouchend(t),delete this.touchStart)},onmouseout:function(e){if(this.touchStart){var i=e.target,s=e.relatedTarget;(!s||s!==i&&!t.contains(i,s))&&this.onmouseup(e)}},ontouchstart:function(t){var e=(t.originalEvent||t).touches[0];this.touchStart={x:e.pageX,y:e.pageY,time:Date.now()},this.isScrolling=void 0,this.touchDelta={}},ontouchmove:function(t){var e,i,s=(t.originalEvent||t).touches[0],n=(t.originalEvent||t).scale,o=this.index;if(!(s.length>1||n&&1!==n))if(this.options.disableScroll&&t.preventDefault(),this.touchDelta={x:s.pageX-this.touchStart.x,y:s.pageY-this.touchStart.y},e=this.touchDelta.x,void 0===this.isScrolling&&(this.isScrolling=this.isScrolling||Math.abs(e)0||o===this.num-1&&0>e?Math.abs(e)/this.slideWidth+1:1,i=[o],o&&i.push(o-1),o20||Math.abs(this.touchDelta.x)>r/2,d=!o&&this.touchDelta.x>0||o===this.num-1&&this.touchDelta.x<0,c=!h&&this.options.closeOnSwipeUpOrDown&&(a&&Math.abs(this.touchDelta.y)>20||Math.abs(this.touchDelta.y)>this.slideHeight/2);this.options.continuous&&(d=!1),t=this.touchDelta.x<0?-1:1,this.isScrolling?c?this.close():this.translateY(o,0,l):h&&!d?(e=o+t,i=o-t,s=r*t,n=-r*t,this.options.continuous?(this.move(this.circle(e),s,0),this.move(this.circle(o-2*t),n,0)):e>=0&&ethis.container[0].clientHeight&&(s.style.maxHeight=this.container[0].clientHeight),this.interval&&this.slides[this.index]===n&&this.play(),this.setTimeout(this.options.onslidecomplete,[i,n]))},onload:function(t){this.oncomplete(t)},onerror:function(t){this.oncomplete(t)},onkeydown:function(t){switch(t.which||t.keyCode){case 13:this.options.toggleControlsOnReturn&&(this.preventDefault(t),this.toggleControls());break;case 27:this.options.closeOnEscape&&this.close();break;case 32:this.options.toggleSlideshowOnSpace&&(this.preventDefault(t),this.toggleSlideshow());break;case 37:this.options.enableKeyboardNavigation&&(this.preventDefault(t),this.prev());break;case 39:this.options.enableKeyboardNavigation&&(this.preventDefault(t),this.next())}},handleClick:function(e){var i=this.options,s=e.target||e.srcElement,n=s.parentNode,o=function(e){return t(s).hasClass(e)||t(n).hasClass(e)};n===this.slidesContainer[0]?(this.preventDefault(e),i.closeOnSlideClick?this.close():this.toggleControls()):n.parentNode&&n.parentNode===this.slidesContainer[0]?(this.preventDefault(e),this.toggleControls()):o(i.toggleClass)?(this.preventDefault(e),this.toggleControls()):o(i.prevClass)?(this.preventDefault(e),this.prev()):o(i.nextClass)?(this.preventDefault(e),this.next()):o(i.closeClass)?(this.preventDefault(e),this.close()):o(i.playPauseClass)&&(this.preventDefault(e),this.toggleSlideshow())},onclick:function(t){return this.options.emulateTouchEvents&&this.touchDelta&&(Math.abs(this.touchDelta.x)>20||Math.abs(this.touchDelta.y)>20)?(delete this.touchDelta,void 0):this.handleClick(t)},updateEdgeClasses:function(t){t?this.container.removeClass(this.options.leftEdgeClass):this.container.addClass(this.options.leftEdgeClass),t===this.num-1?this.container.addClass(this.options.rightEdgeClass):this.container.removeClass(this.options.rightEdgeClass)},handleSlide:function(t){this.options.continuous||this.updateEdgeClasses(t),this.loadElements(t),this.options.unloadElements&&this.unloadElements(t),this.setTitle(t)},onslide:function(t){this.index=t,this.handleSlide(t),this.setTimeout(this.options.onslide,[t,this.slides[t]])},setTitle:function(t){var e=this.slides[t].firstChild.title,i=this.titleElement;i.length&&(this.titleElement.empty(),e&&i[0].appendChild(document.createTextNode(e)))},setTimeout:function(t,e,i){var s=this;return t&&window.setTimeout(function(){t.apply(s,e||[])},i||0)},imageFactory:function(e,i){var s,n,o,l=this,r=this.imagePrototype.cloneNode(!1),a=e,h=this.options.stretchImages&&this.support.backgroundSize&&this.support.backgroundSize.contain,d=function(e){if(!s){if(e={type:e.type,target:n},!n.parentNode)return l.setTimeout(d,[e]);s=!0,t(r).off("load error",d),h&&"load"===e.type&&(n.style.background='url("'+a+'") center no-repeat',n.style.backgroundSize="contain"),i(e)}};return"string"!=typeof a&&(a=this.getItemProperty(e,this.options.urlProperty),o=this.getItemProperty(e,this.options.titleProperty)),h?n=this.elementPrototype.cloneNode(!1):(n=r,r.draggable=!1),o&&(n.title=o),t(r).on("load error",d),r.src=a,n},createElement:function(e,i){var s=e&&this.getItemProperty(e,this.options.typeProperty),n=s&&this[s.split("/")[0]+"Factory"]||this.imageFactory,o=e&&n.call(this,e,i);return o||(o=this.elementPrototype.cloneNode(!1),this.setTimeout(i,[{type:"error",target:o}])),t(o).addClass(this.options.slideContentClass),o},loadElement:function(e){this.elements[e]||(this.slides[e].firstChild?this.elements[e]=t(this.slides[e]).hasClass(this.options.slideErrorClass)?3:2:(this.elements[e]=1,t(this.slides[e]).addClass(this.options.slideLoadingClass),this.slides[e].appendChild(this.createElement(this.list[e],this.proxyListener))))},loadElements:function(t){var e,i=Math.min(this.num,2*this.options.preloadRange+1),s=t;for(e=0;i>e;e+=1)s+=e*(0===e%2?-1:1),s=this.circle(s),this.loadElement(s)},unloadElements:function(t){var e,i,s;for(e in this.elements)this.elements.hasOwnProperty(e)&&(s=Math.abs(t-e),s>this.options.preloadRange&&s+this.options.preloadRanget?-this.slideWidth:this.index= unit.size) { + return prefix + (bytes / unit.size).toFixed(2) + suffix; + } + i += 1; + } + }; + }; + }) + + // The FileUploadController initializes the fileupload widget and + // provides scope methods to control the File Upload functionality: + .controller('FileUploadController', [ + '$scope', '$element', '$attrs', '$window', 'fileUpload', + function ($scope, $element, $attrs, $window, fileUpload) { + var uploadMethods = { + progress: function () { + return $element.fileupload('progress'); + }, + active: function () { + return $element.fileupload('active'); + }, + option: function (option, data) { + return $element.fileupload('option', option, data); + }, + add: function (data) { + return $element.fileupload('add', data); + }, + send: function (data) { + return $element.fileupload('send', data); + }, + process: function (data) { + return $element.fileupload('process', data); + }, + processing: function (data) { + return $element.fileupload('processing', data); + } + }; + $scope.disabled = !$window.jQuery.support.fileInput; + $scope.queue = $scope.queue || []; + $scope.clear = function (files) { + var queue = this.queue, + i = queue.length, + file = files, + length = 1; + if (angular.isArray(files)) { + file = files[0]; + length = files.length; + } + while (i) { + i -= 1; + if (queue[i] === file) { + return queue.splice(i, length); + } + } + }; + $scope.replace = function (oldFiles, newFiles) { + var queue = this.queue, + file = oldFiles[0], + i, + j; + for (i = 0; i < queue.length; i += 1) { + if (queue[i] === file) { + for (j = 0; j < newFiles.length; j += 1) { + queue[i + j] = newFiles[j]; + } + return; + } + } + }; + $scope.applyOnQueue = function (method) { + var list = this.queue.slice(0), + i, + file; + for (i = 0; i < list.length; i += 1) { + file = list[i]; + if (file[method]) { + file[method](); + } + } + }; + $scope.submit = function () { + this.applyOnQueue('$submit'); + }; + $scope.cancel = function () { + this.applyOnQueue('$cancel'); + }; + // Add upload methods to the scope: + angular.extend($scope, uploadMethods); + // The fileupload widget will initialize with + // the options provided via "data-"-parameters, + // as well as those given via options object: + $element.fileupload(angular.extend( + {scope: function () { + return $scope; + }}, + fileUpload.defaults + )).on('fileuploadadd', function (e, data) { + data.scope = $scope.option('scope'); + }).on([ + 'fileuploadadd', + 'fileuploadsubmit', + 'fileuploadsend', + 'fileuploaddone', + 'fileuploadfail', + 'fileuploadalways', + 'fileuploadprogress', + 'fileuploadprogressall', + 'fileuploadstart', + 'fileuploadstop', + 'fileuploadchange', + 'fileuploadpaste', + 'fileuploaddrop', + 'fileuploaddragover', + 'fileuploadchunksend', + 'fileuploadchunkdone', + 'fileuploadchunkfail', + 'fileuploadchunkalways', + 'fileuploadprocessstart', + 'fileuploadprocess', + 'fileuploadprocessdone', + 'fileuploadprocessfail', + 'fileuploadprocessalways', + 'fileuploadprocessstop' + ].join(' '), function (e, data) { + if ($scope.$emit(e.type, data).defaultPrevented) { + e.preventDefault(); + } + }).on('remove', function () { + // Remove upload methods from the scope, + // when the widget is removed: + var method; + for (method in uploadMethods) { + if (uploadMethods.hasOwnProperty(method)) { + delete $scope[method]; + } + } + }); + // Observe option changes: + $scope.$watch( + $attrs.fileUpload, + function (newOptions) { + if (newOptions) { + $element.fileupload('option', newOptions); + } + } + ); + } + ]) + + // Provide File Upload progress feedback: + .controller('FileUploadProgressController', [ + '$scope', '$attrs', '$parse', + function ($scope, $attrs, $parse) { + var fn = $parse($attrs.fileUploadProgress), + update = function () { + var progress = fn($scope); + if (!progress || !progress.total) { + return; + } + $scope.num = Math.floor( + progress.loaded / progress.total * 100 + ); + }; + update(); + $scope.$watch( + $attrs.fileUploadProgress + '.loaded', + function (newValue, oldValue) { + if (newValue !== oldValue) { + update(); + } + } + ); + } + ]) + + // Display File Upload previews: + .controller('FileUploadPreviewController', [ + '$scope', '$element', '$attrs', '$parse', + function ($scope, $element, $attrs, $parse) { + var fn = $parse($attrs.fileUploadPreview), + file = fn($scope); + if (file.preview) { + $element.append(file.preview); + } + } + ]) + + .directive('fileUpload', function () { + return { + controller: 'FileUploadController' + }; + }) + + .directive('fileUploadProgress', function () { + return { + controller: 'FileUploadProgressController' + }; + }) + + .directive('fileUploadPreview', function () { + return { + controller: 'FileUploadPreviewController' + }; + }) + + // Enhance the HTML5 download attribute to + // allow drag&drop of files to the desktop: + .directive('download', function () { + return function (scope, elm) { + elm.on('dragstart', function (e) { + try { + e.originalEvent.dataTransfer.setData( + 'DownloadURL', + [ + 'application/octet-stream', + elm.prop('download'), + elm.prop('href') + ].join(':') + ); + } catch (ignore) {} + }); + }; + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-audio.js b/static/file_upload/js/jquery.fileupload-audio.js new file mode 100644 index 00000000..f59c2fa5 --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-audio.js @@ -0,0 +1,106 @@ +/* + * jQuery File Upload Audio Preview Plugin 1.0.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, document */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'load-image', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.loadImage + ); + } +}(function ($, loadImage) { + 'use strict'; + + // Prepend to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.unshift( + { + action: 'loadAudio', + // Use the action as prefix for the "@" options: + prefix: true, + fileTypes: '@', + maxFileSize: '@', + disabled: '@disableAudioPreview' + }, + { + action: 'setAudio', + name: '@audioPreviewName', + disabled: '@disableAudioPreview' + } + ); + + // The File Upload Audio Preview plugin extends the fileupload widget + // with audio preview functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The regular expression for the types of audio files to load, + // matched against the file type: + loadAudioFileTypes: /^audio\/.*$/ + }, + + _audioElement: document.createElement('audio'), + + processActions: { + + // Loads the audio file given via data.files and data.index + // as audio element if the browser supports playing it. + // Accepts the options fileTypes (regular expression) + // and maxFileSize (integer) to limit the files to load: + loadAudio: function (data, options) { + if (options.disabled) { + return data; + } + var file = data.files[data.index], + url, + audio; + if (this._audioElement.canPlayType && + this._audioElement.canPlayType(file.type) && + ($.type(options.maxFileSize) !== 'number' || + file.size <= options.maxFileSize) && + (!options.fileTypes || + options.fileTypes.test(file.type))) { + url = loadImage.createObjectURL(file); + if (url) { + audio = this._audioElement.cloneNode(false); + audio.src = url; + audio.controls = true; + data.audio = audio; + return data; + } + } + return data; + }, + + // Sets the audio element as a property of the file object: + setAudio: function (data, options) { + if (data.audio && !options.disabled) { + data.files[data.index][options.name || 'preview'] = data.audio; + } + return data; + } + + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-image.js b/static/file_upload/js/jquery.fileupload-image.js new file mode 100644 index 00000000..84474a7b --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-image.js @@ -0,0 +1,292 @@ +/* + * jQuery File Upload Image Preview & Resize Plugin 1.2.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, document, DataView, Blob, Uint8Array */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'load-image', + 'load-image-meta', + 'load-image-exif', + 'load-image-ios', + 'canvas-to-blob', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.loadImage + ); + } +}(function ($, loadImage) { + 'use strict'; + + // Prepend to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.unshift( + { + action: 'loadImageMetaData', + disableImageHead: '@', + disableExif: '@', + disableExifThumbnail: '@', + disableExifSub: '@', + disableExifGps: '@', + disabled: '@disableImageMetaDataLoad' + }, + { + action: 'loadImage', + // Use the action as prefix for the "@" options: + prefix: true, + fileTypes: '@', + maxFileSize: '@', + noRevoke: '@', + disabled: '@disableImageLoad' + }, + { + action: 'resizeImage', + // Use "image" as prefix for the "@" options: + prefix: 'image', + maxWidth: '@', + maxHeight: '@', + minWidth: '@', + minHeight: '@', + crop: '@', + disabled: '@disableImageResize' + }, + { + action: 'saveImage', + disabled: '@disableImageResize' + }, + { + action: 'saveImageMetaData', + disabled: '@disableImageMetaDataSave' + }, + { + action: 'resizeImage', + // Use "preview" as prefix for the "@" options: + prefix: 'preview', + maxWidth: '@', + maxHeight: '@', + minWidth: '@', + minHeight: '@', + crop: '@', + orientation: '@', + thumbnail: '@', + canvas: '@', + disabled: '@disableImagePreview' + }, + { + action: 'setImage', + name: '@imagePreviewName', + disabled: '@disableImagePreview' + } + ); + + // The File Upload Resize plugin extends the fileupload widget + // with image resize functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The regular expression for the types of images to load: + // matched against the file type: + loadImageFileTypes: /^image\/(gif|jpeg|png)$/, + // The maximum file size of images to load: + loadImageMaxFileSize: 10000000, // 10MB + // The maximum width of resized images: + imageMaxWidth: 1920, + // The maximum height of resized images: + imageMaxHeight: 1080, + // Define if resized images should be cropped or only scaled: + imageCrop: false, + // Disable the resize image functionality by default: + disableImageResize: true, + // The maximum width of the preview images: + previewMaxWidth: 80, + // The maximum height of the preview images: + previewMaxHeight: 80, + // Defines the preview orientation (1-8) or takes the orientation + // value from Exif data if set to true: + previewOrientation: true, + // Create the preview using the Exif data thumbnail: + previewThumbnail: true, + // Define if preview images should be cropped or only scaled: + previewCrop: false, + // Define if preview images should be resized as canvas elements: + previewCanvas: true + }, + + processActions: { + + // Loads the image given via data.files and data.index + // as img element if the browser supports canvas. + // Accepts the options fileTypes (regular expression) + // and maxFileSize (integer) to limit the files to load: + loadImage: function (data, options) { + if (options.disabled) { + return data; + } + var that = this, + file = data.files[data.index], + dfd = $.Deferred(); + if (($.type(options.maxFileSize) === 'number' && + file.size > options.maxFileSize) || + (options.fileTypes && + !options.fileTypes.test(file.type)) || + !loadImage( + file, + function (img) { + if (img.src) { + data.img = img; + } + dfd.resolveWith(that, [data]); + }, + options + )) { + return data; + } + return dfd.promise(); + }, + + // Resizes the image given as data.canvas or data.img + // and updates data.canvas or data.img with the resized image. + // Accepts the options maxWidth, maxHeight, minWidth, + // minHeight, canvas and crop: + resizeImage: function (data, options) { + if (options.disabled) { + return data; + } + var that = this, + dfd = $.Deferred(), + resolve = function (newImg) { + data[newImg.getContext ? 'canvas' : 'img'] = newImg; + dfd.resolveWith(that, [data]); + }, + thumbnail, + img, + newImg; + options = $.extend({canvas: true}, options); + if (data.exif) { + if (options.orientation === true) { + options.orientation = data.exif.get('Orientation'); + } + if (options.thumbnail) { + thumbnail = data.exif.get('Thumbnail'); + if (thumbnail) { + loadImage(thumbnail, resolve, options); + return dfd.promise(); + } + } + } + img = (options.canvas && data.canvas) || data.img; + if (img) { + newImg = loadImage.scale(img, options); + if (newImg.width !== img.width || + newImg.height !== img.height) { + resolve(newImg); + return dfd.promise(); + } + } + return data; + }, + + // Saves the processed image given as data.canvas + // inplace at data.index of data.files: + saveImage: function (data, options) { + if (!data.canvas || options.disabled) { + return data; + } + var that = this, + file = data.files[data.index], + name = file.name, + dfd = $.Deferred(), + callback = function (blob) { + if (!blob.name) { + if (file.type === blob.type) { + blob.name = file.name; + } else if (file.name) { + blob.name = file.name.replace( + /\..+$/, + '.' + blob.type.substr(6) + ); + } + } + // Store the created blob at the position + // of the original file in the files list: + data.files[data.index] = blob; + dfd.resolveWith(that, [data]); + }; + // Use canvas.mozGetAsFile directly, to retain the filename, as + // Gecko doesn't support the filename option for FormData.append: + if (data.canvas.mozGetAsFile) { + callback(data.canvas.mozGetAsFile( + (/^image\/(jpeg|png)$/.test(file.type) && name) || + ((name && name.replace(/\..+$/, '')) || + 'blob') + '.png', + file.type + )); + } else if (data.canvas.toBlob) { + data.canvas.toBlob(callback, file.type); + } else { + return data; + } + return dfd.promise(); + }, + + loadImageMetaData: function (data, options) { + if (options.disabled) { + return data; + } + var that = this, + dfd = $.Deferred(); + loadImage.parseMetaData(data.files[data.index], function (result) { + $.extend(data, result); + dfd.resolveWith(that, [data]); + }, options); + return dfd.promise(); + }, + + saveImageMetaData: function (data, options) { + if (!(data.imageHead && data.canvas && + data.canvas.toBlob && !options.disabled)) { + return data; + } + var file = data.files[data.index], + blob = new Blob([ + data.imageHead, + // Resized images always have a head size of 20 bytes, + // including the JPEG marker and a minimal JFIF header: + this._blobSlice.call(file, 20) + ], {type: file.type}); + blob.name = file.name; + data.files[data.index] = blob; + return data; + }, + + // Sets the resized version of the image as a property of the + // file object, must be called after "saveImage": + setImage: function (data, options) { + var img = data.canvas || data.img; + if (img && !options.disabled) { + data.files[data.index][options.name || 'preview'] = img; + } + return data; + } + + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-jquery-ui.js b/static/file_upload/js/jquery.fileupload-jquery-ui.js new file mode 100644 index 00000000..05dd7a61 --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-jquery-ui.js @@ -0,0 +1,138 @@ +/* + * jQuery File Upload jQuery UI Plugin 8.7.0 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true */ +/*global define, window */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define(['jquery', './jquery.fileupload-ui'], factory); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + progress: function (e, data) { + if (data.context) { + data.context.find('.progress').progressbar( + 'option', + 'value', + parseInt(data.loaded / data.total * 100, 10) + ); + } + }, + progressall: function (e, data) { + var $this = $(this); + $this.find('.fileupload-progress') + .find('.progress').progressbar( + 'option', + 'value', + parseInt(data.loaded / data.total * 100, 10) + ).end() + .find('.progress-extended').each(function () { + $(this).html( + ($this.data('blueimp-fileupload') || + $this.data('fileupload')) + ._renderExtendedProgress(data) + ); + }); + } + }, + + _renderUpload: function (func, files) { + var node = this._super(func, files), + showIconText = $(window).width() > 480; + node.find('.progress').empty().progressbar(); + node.find('.start').button({ + icons: {primary: 'ui-icon-circle-arrow-e'}, + text: showIconText + }); + node.find('.cancel').button({ + icons: {primary: 'ui-icon-cancel'}, + text: showIconText + }); + return node; + }, + + _renderDownload: function (func, files) { + var node = this._super(func, files), + showIconText = $(window).width() > 480; + node.find('.delete').button({ + icons: {primary: 'ui-icon-trash'}, + text: showIconText + }); + return node; + }, + + _transition: function (node) { + var deferred = $.Deferred(); + if (node.hasClass('fade')) { + node.fadeToggle( + this.options.transitionDuration, + this.options.transitionEasing, + function () { + deferred.resolveWith(node); + } + ); + } else { + deferred.resolveWith(node); + } + return deferred; + }, + + _create: function () { + this._super(); + this.element + .find('.fileupload-buttonbar') + .find('.fileinput-button').each(function () { + var input = $(this).find('input:file').detach(); + $(this) + .button({icons: {primary: 'ui-icon-plusthick'}}) + .append(input); + }) + .end().find('.start') + .button({icons: {primary: 'ui-icon-circle-arrow-e'}}) + .end().find('.cancel') + .button({icons: {primary: 'ui-icon-cancel'}}) + .end().find('.delete') + .button({icons: {primary: 'ui-icon-trash'}}) + .end().find('.progress').progressbar(); + }, + + _destroy: function () { + this.element + .find('.fileupload-buttonbar') + .find('.fileinput-button').each(function () { + var input = $(this).find('input:file').detach(); + $(this) + .button('destroy') + .append(input); + }) + .end().find('.start') + .button('destroy') + .end().find('.cancel') + .button('destroy') + .end().find('.delete') + .button('destroy') + .end().find('.progress').progressbar('destroy'); + this._super(); + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-process.js b/static/file_upload/js/jquery.fileupload-process.js new file mode 100644 index 00000000..87042c3d --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-process.js @@ -0,0 +1,164 @@ +/* + * jQuery File Upload Processing Plugin 1.2.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2012, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true */ +/*global define, window */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + './jquery.fileupload' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery + ); + } +}(function ($) { + 'use strict'; + + var originalAdd = $.blueimp.fileupload.prototype.options.add; + + // The File Upload Processing plugin extends the fileupload widget + // with file processing functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The list of processing actions: + processQueue: [ + /* + { + action: 'log', + type: 'debug' + } + */ + ], + add: function (e, data) { + var $this = $(this); + data.process(function () { + return $this.fileupload('process', data); + }); + originalAdd.call(this, e, data); + } + }, + + processActions: { + /* + log: function (data, options) { + console[options.type]( + 'Processing "' + data.files[data.index].name + '"' + ); + } + */ + }, + + _processFile: function (data) { + var that = this, + dfd = $.Deferred().resolveWith(that, [data]), + chain = dfd.promise(); + this._trigger('process', null, data); + $.each(data.processQueue, function (i, settings) { + var func = function (data) { + return that.processActions[settings.action].call( + that, + data, + settings + ); + }; + chain = chain.pipe(func, settings.always && func); + }); + chain + .done(function () { + that._trigger('processdone', null, data); + that._trigger('processalways', null, data); + }) + .fail(function () { + that._trigger('processfail', null, data); + that._trigger('processalways', null, data); + }); + return chain; + }, + + // Replaces the settings of each processQueue item that + // are strings starting with an "@", using the remaining + // substring as key for the option map, + // e.g. "@autoUpload" is replaced with options.autoUpload: + _transformProcessQueue: function (options) { + var processQueue = []; + $.each(options.processQueue, function () { + var settings = {}, + action = this.action, + prefix = this.prefix === true ? action : this.prefix; + $.each(this, function (key, value) { + if ($.type(value) === 'string' && + value.charAt(0) === '@') { + settings[key] = options[ + value.slice(1) || (prefix ? prefix + + key.charAt(0).toUpperCase() + key.slice(1) : key) + ]; + } else { + settings[key] = value; + } + + }); + processQueue.push(settings); + }); + options.processQueue = processQueue; + }, + + // Returns the number of files currently in the processsing queue: + processing: function () { + return this._processing; + }, + + // Processes the files given as files property of the data parameter, + // returns a Promise object that allows to bind callbacks: + process: function (data) { + var that = this, + options = $.extend({}, this.options, data); + if (options.processQueue && options.processQueue.length) { + this._transformProcessQueue(options); + if (this._processing === 0) { + this._trigger('processstart'); + } + $.each(data.files, function (index) { + var opts = index ? $.extend({}, options) : options, + func = function () { + return that._processFile(opts); + }; + opts.index = index; + that._processing += 1; + that._processingQueue = that._processingQueue.pipe(func, func) + .always(function () { + that._processing -= 1; + if (that._processing === 0) { + that._trigger('processstop'); + } + }); + }); + } + return this._processingQueue; + }, + + _create: function () { + this._super(); + this._processing = 0; + this._processingQueue = $.Deferred().resolveWith(this) + .promise(); + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-ui.js b/static/file_upload/js/jquery.fileupload-ui.js new file mode 100644 index 00000000..59381fcb --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-ui.js @@ -0,0 +1,643 @@ +/* + * jQuery File Upload User Interface Plugin 8.8.1 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, URL, webkitURL, FileReader */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'tmpl', + './jquery.fileupload-image', + './jquery.fileupload-audio', + './jquery.fileupload-video', + './jquery.fileupload-validate' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.tmpl + ); + } +}(function ($, tmpl, loadImage) { + 'use strict'; + + $.blueimp.fileupload.prototype._specialOptions.push( + 'filesContainer', + 'uploadTemplateId', + 'downloadTemplateId' + ); + + // The UI version extends the file upload widget + // and adds complete user interface interaction: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // By default, files added to the widget are uploaded as soon + // as the user clicks on the start buttons. To enable automatic + // uploads, set the following option to true: + autoUpload: false, + // The ID of the upload template: + uploadTemplateId: 'template-upload', + // The ID of the download template: + downloadTemplateId: 'template-download', + // The container for the list of files. If undefined, it is set to + // an element with class "files" inside of the widget element: + filesContainer: undefined, + // By default, files are appended to the files container. + // Set the following option to true, to prepend files instead: + prependFiles: false, + // The expected data type of the upload response, sets the dataType + // option of the $.ajax upload requests: + dataType: 'json', + + // Function returning the current number of files, + // used by the maxNumberOfFiles validation: + getNumberOfFiles: function () { + return this.filesContainer.children().length; + }, + + // Callback to retrieve the list of files from the server response: + getFilesFromResponse: function (data) { + if (data.result && $.isArray(data.result.files)) { + return data.result.files; + } + return []; + }, + + // The add callback is invoked as soon as files are added to the fileupload + // widget (via file input selection, drag & drop or add API call). + // See the basic file upload widget for more information: + add: function (e, data) { + var $this = $(this), + that = $this.data('blueimp-fileupload') || + $this.data('fileupload'), + options = that.options, + files = data.files; + data.process(function () { + return $this.fileupload('process', data); + }).always(function () { + data.context = that._renderUpload(files).data('data', data); + that._renderPreviews(data); + options.filesContainer[ + options.prependFiles ? 'prepend' : 'append' + ](data.context); + that._forceReflow(data.context); + that._transition(data.context).done( + function () { + if ((that._trigger('added', e, data) !== false) && + (options.autoUpload || data.autoUpload) && + data.autoUpload !== false && !data.files.error) { + data.submit(); + } + } + ); + }); + }, + // Callback for the start of each file upload request: + send: function (e, data) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'); + if (data.context && data.dataType && + data.dataType.substr(0, 6) === 'iframe') { + // Iframe Transport does not support progress events. + // In lack of an indeterminate progress bar, we set + // the progress to 100%, showing the full animated bar: + data.context + .find('.progress').addClass( + !$.support.transition && 'progress-animated' + ) + .attr('aria-valuenow', 100) + .children().first().css( + 'width', + '100%' + ); + } + return that._trigger('sent', e, data); + }, + // Callback for successful uploads: + done: function (e, data) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'), + getFilesFromResponse = data.getFilesFromResponse || + that.options.getFilesFromResponse, + files = getFilesFromResponse(data), + template, + deferred; + if (data.context) { + data.context.each(function (index) { + var file = files[index] || + {error: 'Empty file upload result'}; + deferred = that._addFinishedDeferreds(); + that._transition($(this)).done( + function () { + var node = $(this); + template = that._renderDownload([file]) + .replaceAll(node); + that._forceReflow(template); + that._transition(template).done( + function () { + data.context = $(this); + that._trigger('completed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } + ); + }); + } else { + template = that._renderDownload(files)[ + that.options.prependFiles ? 'prependTo' : 'appendTo' + ](that.options.filesContainer); + that._forceReflow(template); + deferred = that._addFinishedDeferreds(); + that._transition(template).done( + function () { + data.context = $(this); + that._trigger('completed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } + }, + // Callback for failed (abort or error) uploads: + fail: function (e, data) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'), + template, + deferred; + if (data.context) { + data.context.each(function (index) { + if (data.errorThrown !== 'abort') { + var file = data.files[index]; + file.error = file.error || data.errorThrown || + true; + deferred = that._addFinishedDeferreds(); + that._transition($(this)).done( + function () { + var node = $(this); + template = that._renderDownload([file]) + .replaceAll(node); + that._forceReflow(template); + that._transition(template).done( + function () { + data.context = $(this); + that._trigger('failed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } + ); + } else { + deferred = that._addFinishedDeferreds(); + that._transition($(this)).done( + function () { + $(this).remove(); + that._trigger('failed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } + }); + } else if (data.errorThrown !== 'abort') { + data.context = that._renderUpload(data.files)[ + that.options.prependFiles ? 'prependTo' : 'appendTo' + ](that.options.filesContainer) + .data('data', data); + that._forceReflow(data.context); + deferred = that._addFinishedDeferreds(); + that._transition(data.context).done( + function () { + data.context = $(this); + that._trigger('failed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } else { + that._trigger('failed', e, data); + that._trigger('finished', e, data); + that._addFinishedDeferreds().resolve(); + } + }, + // Callback for upload progress events: + progress: function (e, data) { + if (data.context) { + var progress = Math.floor(data.loaded / data.total * 100); + data.context.find('.progress') + .attr('aria-valuenow', progress) + .children().first().css( + 'width', + progress + '%' + ); + } + }, + // Callback for global upload progress events: + progressall: function (e, data) { + var $this = $(this), + progress = Math.floor(data.loaded / data.total * 100), + globalProgressNode = $this.find('.fileupload-progress'), + extendedProgressNode = globalProgressNode + .find('.progress-extended'); + if (extendedProgressNode.length) { + extendedProgressNode.html( + ($this.data('blueimp-fileupload') || $this.data('fileupload')) + ._renderExtendedProgress(data) + ); + } + globalProgressNode + .find('.progress') + .attr('aria-valuenow', progress) + .children().first().css( + 'width', + progress + '%' + ); + }, + // Callback for uploads start, equivalent to the global ajaxStart event: + start: function (e) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'); + that._resetFinishedDeferreds(); + that._transition($(this).find('.fileupload-progress')).done( + function () { + that._trigger('started', e); + } + ); + }, + // Callback for uploads stop, equivalent to the global ajaxStop event: + stop: function (e) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'), + deferred = that._addFinishedDeferreds(); + $.when.apply($, that._getFinishedDeferreds()) + .done(function () { + that._trigger('stopped', e); + }); + that._transition($(this).find('.fileupload-progress')).done( + function () { + $(this).find('.progress') + .attr('aria-valuenow', '0') + .children().first().css('width', '0%'); + $(this).find('.progress-extended').html(' '); + deferred.resolve(); + } + ); + }, + processstart: function () { + $(this).addClass('fileupload-processing'); + }, + processstop: function () { + $(this).removeClass('fileupload-processing'); + }, + // Callback for file deletion: + destroy: function (e, data) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'), + removeNode = function () { + that._transition(data.context).done( + function () { + $(this).remove(); + that._trigger('destroyed', e, data); + } + ); + }; + if (data.url) { + $.ajax(data).done(removeNode); + } else { + removeNode(); + } + } + }, + + _resetFinishedDeferreds: function () { + this._finishedUploads = []; + }, + + _addFinishedDeferreds: function (deferred) { + if (!deferred) { + deferred = $.Deferred(); + } + this._finishedUploads.push(deferred); + return deferred; + }, + + _getFinishedDeferreds: function () { + return this._finishedUploads; + }, + + // Link handler, that allows to download files + // by drag & drop of the links to the desktop: + _enableDragToDesktop: function () { + var link = $(this), + url = link.prop('href'), + name = link.prop('download'), + type = 'application/octet-stream'; + link.bind('dragstart', function (e) { + try { + e.originalEvent.dataTransfer.setData( + 'DownloadURL', + [type, name, url].join(':') + ); + } catch (ignore) {} + }); + }, + + _formatFileSize: function (bytes) { + if (typeof bytes !== 'number') { + return ''; + } + if (bytes >= 1000000000) { + return (bytes / 1000000000).toFixed(2) + ' GB'; + } + if (bytes >= 1000000) { + return (bytes / 1000000).toFixed(2) + ' MB'; + } + return (bytes / 1000).toFixed(2) + ' KB'; + }, + + _formatBitrate: function (bits) { + if (typeof bits !== 'number') { + return ''; + } + if (bits >= 1000000000) { + return (bits / 1000000000).toFixed(2) + ' Gbit/s'; + } + if (bits >= 1000000) { + return (bits / 1000000).toFixed(2) + ' Mbit/s'; + } + if (bits >= 1000) { + return (bits / 1000).toFixed(2) + ' kbit/s'; + } + return bits.toFixed(2) + ' bit/s'; + }, + + _formatTime: function (seconds) { + var date = new Date(seconds * 1000), + days = Math.floor(seconds / 86400); + days = days ? days + 'd ' : ''; + return days + + ('0' + date.getUTCHours()).slice(-2) + ':' + + ('0' + date.getUTCMinutes()).slice(-2) + ':' + + ('0' + date.getUTCSeconds()).slice(-2); + }, + + _formatPercentage: function (floatValue) { + return (floatValue * 100).toFixed(2) + ' %'; + }, + + _renderExtendedProgress: function (data) { + return this._formatBitrate(data.bitrate) + ' | ' + + this._formatTime( + (data.total - data.loaded) * 8 / data.bitrate + ) + ' | ' + + this._formatPercentage( + data.loaded / data.total + ) + ' | ' + + this._formatFileSize(data.loaded) + ' / ' + + this._formatFileSize(data.total); + }, + + _renderTemplate: function (func, files) { + if (!func) { + return $(); + } + var result = func({ + files: files, + formatFileSize: this._formatFileSize, + options: this.options + }); + if (result instanceof $) { + return result; + } + return $(this.options.templatesContainer).html(result).children(); + }, + + _renderPreviews: function (data) { + data.context.find('.preview').each(function (index, elm) { + $(elm).append(data.files[index].preview); + }); + }, + + _renderUpload: function (files) { + return this._renderTemplate( + this.options.uploadTemplate, + files + ); + }, + + _renderDownload: function (files) { + return this._renderTemplate( + this.options.downloadTemplate, + files + ).find('a[download]').each(this._enableDragToDesktop).end(); + }, + + _startHandler: function (e) { + e.preventDefault(); + var button = $(e.currentTarget), + template = button.closest('.template-upload'), + data = template.data('data'); + if (data && data.submit && !data.jqXHR && data.submit()) { + button.prop('disabled', true); + } + }, + + _cancelHandler: function (e) { + e.preventDefault(); + var template = $(e.currentTarget).closest('.template-upload'), + data = template.data('data') || {}; + if (!data.jqXHR) { + data.errorThrown = 'abort'; + this._trigger('fail', e, data); + } else { + data.jqXHR.abort(); + } + }, + + _deleteHandler: function (e) { + e.preventDefault(); + var button = $(e.currentTarget); + this._trigger('destroy', e, $.extend({ + context: button.closest('.template-download'), + type: 'DELETE' + }, button.data())); + }, + + _forceReflow: function (node) { + return $.support.transition && node.length && + node[0].offsetWidth; + }, + + _transition: function (node) { + var dfd = $.Deferred(); + if ($.support.transition && node.hasClass('fade') && node.is(':visible')) { + node.bind( + $.support.transition.end, + function (e) { + // Make sure we don't respond to other transitions events + // in the container element, e.g. from button elements: + if (e.target === node[0]) { + node.unbind($.support.transition.end); + dfd.resolveWith(node); + } + } + ).toggleClass('in'); + } else { + node.toggleClass('in'); + dfd.resolveWith(node); + } + return dfd; + }, + + _initButtonBarEventHandlers: function () { + var fileUploadButtonBar = this.element.find('.fileupload-buttonbar'), + filesList = this.options.filesContainer; + this._on(fileUploadButtonBar.find('.start'), { + click: function (e) { + e.preventDefault(); + filesList.find('.start').click(); + } + }); + this._on(fileUploadButtonBar.find('.cancel'), { + click: function (e) { + e.preventDefault(); + filesList.find('.cancel').click(); + } + }); + this._on(fileUploadButtonBar.find('.delete'), { + click: function (e) { + e.preventDefault(); + filesList.find('.toggle:checked') + .closest('.template-download') + .find('.delete').click(); + fileUploadButtonBar.find('.toggle') + .prop('checked', false); + } + }); + this._on(fileUploadButtonBar.find('.toggle'), { + change: function (e) { + filesList.find('.toggle').prop( + 'checked', + $(e.currentTarget).is(':checked') + ); + } + }); + }, + + _destroyButtonBarEventHandlers: function () { + this._off( + this.element.find('.fileupload-buttonbar') + .find('.start, .cancel, .delete'), + 'click' + ); + this._off( + this.element.find('.fileupload-buttonbar .toggle'), + 'change.' + ); + }, + + _initEventHandlers: function () { + this._super(); + this._on(this.options.filesContainer, { + 'click .start': this._startHandler, + 'click .cancel': this._cancelHandler, + 'click .delete': this._deleteHandler + }); + this._initButtonBarEventHandlers(); + }, + + _destroyEventHandlers: function () { + this._destroyButtonBarEventHandlers(); + this._off(this.options.filesContainer, 'click'); + this._super(); + }, + + _enableFileInputButton: function () { + this.element.find('.fileinput-button input') + .prop('disabled', false) + .parent().removeClass('disabled'); + }, + + _disableFileInputButton: function () { + this.element.find('.fileinput-button input') + .prop('disabled', true) + .parent().addClass('disabled'); + }, + + _initTemplates: function () { + var options = this.options; + options.templatesContainer = this.document[0].createElement( + options.filesContainer.prop('nodeName') + ); + if (tmpl) { + if (options.uploadTemplateId) { + options.uploadTemplate = tmpl(options.uploadTemplateId); + } + if (options.downloadTemplateId) { + options.downloadTemplate = tmpl(options.downloadTemplateId); + } + } + }, + + _initFilesContainer: function () { + var options = this.options; + if (options.filesContainer === undefined) { + options.filesContainer = this.element.find('.files'); + } else if (!(options.filesContainer instanceof $)) { + options.filesContainer = $(options.filesContainer); + } + }, + + _initSpecialOptions: function () { + this._super(); + this._initFilesContainer(); + this._initTemplates(); + }, + + _create: function () { + this._super(); + this._resetFinishedDeferreds(); + if (!$.support.fileInput) { + this._disableFileInputButton(); + } + }, + + enable: function () { + var wasDisabled = false; + if (this.options.disabled) { + wasDisabled = true; + } + this._super(); + if (wasDisabled) { + this.element.find('input, button').prop('disabled', false); + this._enableFileInputButton(); + } + }, + + disable: function () { + if (!this.options.disabled) { + this.element.find('input, button').prop('disabled', true); + this._disableFileInputButton(); + } + this._super(); + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-validate.js b/static/file_upload/js/jquery.fileupload-validate.js new file mode 100644 index 00000000..ee1c2f2e --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-validate.js @@ -0,0 +1,117 @@ +/* + * jQuery File Upload Validation Plugin 1.1.1 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery + ); + } +}(function ($) { + 'use strict'; + + // Append to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.push( + { + action: 'validate', + // Always trigger this action, + // even if the previous action was rejected: + always: true, + // Options taken from the global options map: + acceptFileTypes: '@', + maxFileSize: '@', + minFileSize: '@', + maxNumberOfFiles: '@', + disabled: '@disableValidation' + } + ); + + // The File Upload Validation plugin extends the fileupload widget + // with file validation functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + /* + // The regular expression for allowed file types, matches + // against either file type or file name: + acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i, + // The maximum allowed file size in bytes: + maxFileSize: 10000000, // 10 MB + // The minimum allowed file size in bytes: + minFileSize: undefined, // No minimal file size + // The limit of files to be uploaded: + maxNumberOfFiles: 10, + */ + + // Function returning the current number of files, + // has to be overriden for maxNumberOfFiles validation: + getNumberOfFiles: $.noop, + + // Error and info messages: + messages: { + maxNumberOfFiles: 'Maximum number of files exceeded', + acceptFileTypes: 'File type not allowed', + maxFileSize: 'File is too large', + minFileSize: 'File is too small' + } + }, + + processActions: { + + validate: function (data, options) { + if (options.disabled) { + return data; + } + var dfd = $.Deferred(), + settings = this.options, + file = data.files[data.index]; + if ($.type(options.maxNumberOfFiles) === 'number' && + (settings.getNumberOfFiles() || 0) + data.files.length > + options.maxNumberOfFiles) { + file.error = settings.i18n('maxNumberOfFiles'); + } else if (options.acceptFileTypes && + !(options.acceptFileTypes.test(file.type) || + options.acceptFileTypes.test(file.name))) { + file.error = settings.i18n('acceptFileTypes'); + } else if (options.maxFileSize && file.size > + options.maxFileSize) { + file.error = settings.i18n('maxFileSize'); + } else if ($.type(file.size) === 'number' && + file.size < options.minFileSize) { + file.error = settings.i18n('minFileSize'); + } else { + delete file.error; + } + if (file.error || data.files.error) { + data.files.error = true; + dfd.rejectWith(this, [data]); + } else { + dfd.resolveWith(this, [data]); + } + return dfd.promise(); + } + + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-video.js b/static/file_upload/js/jquery.fileupload-video.js new file mode 100644 index 00000000..c8b10193 --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-video.js @@ -0,0 +1,106 @@ +/* + * jQuery File Upload Video Preview Plugin 1.0.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, document */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'load-image', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.loadImage + ); + } +}(function ($, loadImage) { + 'use strict'; + + // Prepend to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.unshift( + { + action: 'loadVideo', + // Use the action as prefix for the "@" options: + prefix: true, + fileTypes: '@', + maxFileSize: '@', + disabled: '@disableVideoPreview' + }, + { + action: 'setVideo', + name: '@videoPreviewName', + disabled: '@disableVideoPreview' + } + ); + + // The File Upload Video Preview plugin extends the fileupload widget + // with video preview functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The regular expression for the types of video files to load, + // matched against the file type: + loadVideoFileTypes: /^video\/.*$/ + }, + + _videoElement: document.createElement('video'), + + processActions: { + + // Loads the video file given via data.files and data.index + // as video element if the browser supports playing it. + // Accepts the options fileTypes (regular expression) + // and maxFileSize (integer) to limit the files to load: + loadVideo: function (data, options) { + if (options.disabled) { + return data; + } + var file = data.files[data.index], + url, + video; + if (this._videoElement.canPlayType && + this._videoElement.canPlayType(file.type) && + ($.type(options.maxFileSize) !== 'number' || + file.size <= options.maxFileSize) && + (!options.fileTypes || + options.fileTypes.test(file.type))) { + url = loadImage.createObjectURL(file); + if (url) { + video = this._videoElement.cloneNode(false); + video.src = url; + video.controls = true; + data.video = video; + return data; + } + } + return data; + }, + + // Sets the video element as a property of the file object: + setVideo: function (data, options) { + if (data.video && !options.disabled) { + data.files[data.index][options.name || 'preview'] = data.video; + } + return data; + } + + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload.js b/static/file_upload/js/jquery.fileupload.js new file mode 100644 index 00000000..3a1ec705 --- /dev/null +++ b/static/file_upload/js/jquery.fileupload.js @@ -0,0 +1,1336 @@ +/* + * jQuery File Upload Plugin 5.32.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, document, location, File, Blob, FormData */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'jquery.ui.widget' + ], factory); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + + // Detect file input support, based on + // http://viljamis.com/blog/2012/file-upload-support-on-mobile/ + $.support.fileInput = !(new RegExp( + // Handle devices which give false positives for the feature detection: + '(Android (1\\.[0156]|2\\.[01]))' + + '|(Windows Phone (OS 7|8\\.0))|(XBLWP)|(ZuneWP)|(WPDesktop)' + + '|(w(eb)?OSBrowser)|(webOS)' + + '|(Kindle/(1\\.0|2\\.[05]|3\\.0))' + ).test(window.navigator.userAgent) || + // Feature detection for all other devices: + $('').prop('disabled')); + + // The FileReader API is not actually used, but works as feature detection, + // as e.g. Safari supports XHR file uploads via the FormData API, + // but not non-multipart XHR file uploads: + $.support.xhrFileUpload = !!(window.XMLHttpRequestUpload && window.FileReader); + $.support.xhrFormDataFileUpload = !!window.FormData; + + // Detect support for Blob slicing (required for chunked uploads): + $.support.blobSlice = window.Blob && (Blob.prototype.slice || + Blob.prototype.webkitSlice || Blob.prototype.mozSlice); + + // The fileupload widget listens for change events on file input fields defined + // via fileInput setting and paste or drop events of the given dropZone. + // In addition to the default jQuery Widget methods, the fileupload widget + // exposes the "add" and "send" methods, to add or directly send files using + // the fileupload API. + // By default, files added via file input selection, paste, drag & drop or + // "add" method are uploaded immediately, but it is possible to override + // the "add" callback option to queue file uploads. + $.widget('blueimp.fileupload', { + + options: { + // The drop target element(s), by the default the complete document. + // Set to null to disable drag & drop support: + dropZone: $(document), + // The paste target element(s), by the default the complete document. + // Set to null to disable paste support: + pasteZone: $(document), + // The file input field(s), that are listened to for change events. + // If undefined, it is set to the file input fields inside + // of the widget element on plugin initialization. + // Set to null to disable the change listener. + fileInput: undefined, + // By default, the file input field is replaced with a clone after + // each input field change event. This is required for iframe transport + // queues and allows change events to be fired for the same file + // selection, but can be disabled by setting the following option to false: + replaceFileInput: true, + // The parameter name for the file form data (the request argument name). + // If undefined or empty, the name property of the file input field is + // used, or "files[]" if the file input name property is also empty, + // can be a string or an array of strings: + paramName: undefined, + // By default, each file of a selection is uploaded using an individual + // request for XHR type uploads. Set to false to upload file + // selections in one request each: + singleFileUploads: true, + // To limit the number of files uploaded with one XHR request, + // set the following option to an integer greater than 0: + limitMultiFileUploads: undefined, + // Set the following option to true to issue all file upload requests + // in a sequential order: + sequentialUploads: false, + // To limit the number of concurrent uploads, + // set the following option to an integer greater than 0: + limitConcurrentUploads: undefined, + // Set the following option to true to force iframe transport uploads: + forceIframeTransport: false, + // Set the following option to the location of a redirect url on the + // origin server, for cross-domain iframe transport uploads: + redirect: undefined, + // The parameter name for the redirect url, sent as part of the form + // data and set to 'redirect' if this option is empty: + redirectParamName: undefined, + // Set the following option to the location of a postMessage window, + // to enable postMessage transport uploads: + postMessage: undefined, + // By default, XHR file uploads are sent as multipart/form-data. + // The iframe transport is always using multipart/form-data. + // Set to false to enable non-multipart XHR uploads: + multipart: true, + // To upload large files in smaller chunks, set the following option + // to a preferred maximum chunk size. If set to 0, null or undefined, + // or the browser does not support the required Blob API, files will + // be uploaded as a whole. + maxChunkSize: undefined, + // When a non-multipart upload or a chunked multipart upload has been + // aborted, this option can be used to resume the upload by setting + // it to the size of the already uploaded bytes. This option is most + // useful when modifying the options object inside of the "add" or + // "send" callbacks, as the options are cloned for each file upload. + uploadedBytes: undefined, + // By default, failed (abort or error) file uploads are removed from the + // global progress calculation. Set the following option to false to + // prevent recalculating the global progress data: + recalculateProgress: true, + // Interval in milliseconds to calculate and trigger progress events: + progressInterval: 100, + // Interval in milliseconds to calculate progress bitrate: + bitrateInterval: 500, + // By default, uploads are started automatically when adding files: + autoUpload: true, + + // Error and info messages: + messages: { + uploadedBytes: 'Uploaded bytes exceed file size' + }, + + // Translation function, gets the message key to be translated + // and an object with context specific data as arguments: + i18n: function (message, context) { + message = this.messages[message] || message.toString(); + if (context) { + $.each(context, function (key, value) { + message = message.replace('{' + key + '}', value); + }); + } + return message; + }, + + // Additional form data to be sent along with the file uploads can be set + // using this option, which accepts an array of objects with name and + // value properties, a function returning such an array, a FormData + // object (for XHR file uploads), or a simple object. + // The form of the first fileInput is given as parameter to the function: + formData: function (form) { + return form.serializeArray(); + }, + + // The add callback is invoked as soon as files are added to the fileupload + // widget (via file input selection, drag & drop, paste or add API call). + // If the singleFileUploads option is enabled, this callback will be + // called once for each file in the selection for XHR file uploads, else + // once for each file selection. + // + // The upload starts when the submit method is invoked on the data parameter. + // The data object contains a files property holding the added files + // and allows you to override plugin options as well as define ajax settings. + // + // Listeners for this callback can also be bound the following way: + // .bind('fileuploadadd', func); + // + // data.submit() returns a Promise object and allows to attach additional + // handlers using jQuery's Deferred callbacks: + // data.submit().done(func).fail(func).always(func); + add: function (e, data) { + if (data.autoUpload || (data.autoUpload !== false && + $(this).fileupload('option', 'autoUpload'))) { + data.process().done(function () { + data.submit(); + }); + } + }, + + // Other callbacks: + + // Callback for the submit event of each file upload: + // submit: function (e, data) {}, // .bind('fileuploadsubmit', func); + + // Callback for the start of each file upload request: + // send: function (e, data) {}, // .bind('fileuploadsend', func); + + // Callback for successful uploads: + // done: function (e, data) {}, // .bind('fileuploaddone', func); + + // Callback for failed (abort or error) uploads: + // fail: function (e, data) {}, // .bind('fileuploadfail', func); + + // Callback for completed (success, abort or error) requests: + // always: function (e, data) {}, // .bind('fileuploadalways', func); + + // Callback for upload progress events: + // progress: function (e, data) {}, // .bind('fileuploadprogress', func); + + // Callback for global upload progress events: + // progressall: function (e, data) {}, // .bind('fileuploadprogressall', func); + + // Callback for uploads start, equivalent to the global ajaxStart event: + // start: function (e) {}, // .bind('fileuploadstart', func); + + // Callback for uploads stop, equivalent to the global ajaxStop event: + // stop: function (e) {}, // .bind('fileuploadstop', func); + + // Callback for change events of the fileInput(s): + // change: function (e, data) {}, // .bind('fileuploadchange', func); + + // Callback for paste events to the pasteZone(s): + // paste: function (e, data) {}, // .bind('fileuploadpaste', func); + + // Callback for drop events of the dropZone(s): + // drop: function (e, data) {}, // .bind('fileuploaddrop', func); + + // Callback for dragover events of the dropZone(s): + // dragover: function (e) {}, // .bind('fileuploaddragover', func); + + // Callback for the start of each chunk upload request: + // chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func); + + // Callback for successful chunk uploads: + // chunkdone: function (e, data) {}, // .bind('fileuploadchunkdone', func); + + // Callback for failed (abort or error) chunk uploads: + // chunkfail: function (e, data) {}, // .bind('fileuploadchunkfail', func); + + // Callback for completed (success, abort or error) chunk upload requests: + // chunkalways: function (e, data) {}, // .bind('fileuploadchunkalways', func); + + // The plugin options are used as settings object for the ajax calls. + // The following are jQuery ajax settings required for the file uploads: + processData: false, + contentType: false, + cache: false + }, + + // A list of options that require reinitializing event listeners and/or + // special initialization code: + _specialOptions: [ + 'fileInput', + 'dropZone', + 'pasteZone', + 'multipart', + 'forceIframeTransport' + ], + + _blobSlice: $.support.blobSlice && function () { + var slice = this.slice || this.webkitSlice || this.mozSlice; + return slice.apply(this, arguments); + }, + + _BitrateTimer: function () { + this.timestamp = ((Date.now) ? Date.now() : (new Date()).getTime()); + this.loaded = 0; + this.bitrate = 0; + this.getBitrate = function (now, loaded, interval) { + var timeDiff = now - this.timestamp; + if (!this.bitrate || !interval || timeDiff > interval) { + this.bitrate = (loaded - this.loaded) * (1000 / timeDiff) * 8; + this.loaded = loaded; + this.timestamp = now; + } + return this.bitrate; + }; + }, + + _isXHRUpload: function (options) { + return !options.forceIframeTransport && + ((!options.multipart && $.support.xhrFileUpload) || + $.support.xhrFormDataFileUpload); + }, + + _getFormData: function (options) { + var formData; + if (typeof options.formData === 'function') { + return options.formData(options.form); + } + if ($.isArray(options.formData)) { + return options.formData; + } + if ($.type(options.formData) === 'object') { + formData = []; + $.each(options.formData, function (name, value) { + formData.push({name: name, value: value}); + }); + return formData; + } + return []; + }, + + _getTotal: function (files) { + var total = 0; + $.each(files, function (index, file) { + total += file.size || 1; + }); + return total; + }, + + _initProgressObject: function (obj) { + var progress = { + loaded: 0, + total: 0, + bitrate: 0 + }; + if (obj._progress) { + $.extend(obj._progress, progress); + } else { + obj._progress = progress; + } + }, + + _initResponseObject: function (obj) { + var prop; + if (obj._response) { + for (prop in obj._response) { + if (obj._response.hasOwnProperty(prop)) { + delete obj._response[prop]; + } + } + } else { + obj._response = {}; + } + }, + + _onProgress: function (e, data) { + if (e.lengthComputable) { + var now = ((Date.now) ? Date.now() : (new Date()).getTime()), + loaded; + if (data._time && data.progressInterval && + (now - data._time < data.progressInterval) && + e.loaded !== e.total) { + return; + } + data._time = now; + loaded = Math.floor( + e.loaded / e.total * (data.chunkSize || data._progress.total) + ) + (data.uploadedBytes || 0); + // Add the difference from the previously loaded state + // to the global loaded counter: + this._progress.loaded += (loaded - data._progress.loaded); + this._progress.bitrate = this._bitrateTimer.getBitrate( + now, + this._progress.loaded, + data.bitrateInterval + ); + data._progress.loaded = data.loaded = loaded; + data._progress.bitrate = data.bitrate = data._bitrateTimer.getBitrate( + now, + loaded, + data.bitrateInterval + ); + // Trigger a custom progress event with a total data property set + // to the file size(s) of the current upload and a loaded data + // property calculated accordingly: + this._trigger('progress', e, data); + // Trigger a global progress event for all current file uploads, + // including ajax calls queued for sequential file uploads: + this._trigger('progressall', e, this._progress); + } + }, + + _initProgressListener: function (options) { + var that = this, + xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr(); + // Accesss to the native XHR object is required to add event listeners + // for the upload progress event: + if (xhr.upload) { + $(xhr.upload).bind('progress', function (e) { + var oe = e.originalEvent; + // Make sure the progress event properties get copied over: + e.lengthComputable = oe.lengthComputable; + e.loaded = oe.loaded; + e.total = oe.total; + that._onProgress(e, options); + }); + options.xhr = function () { + return xhr; + }; + } + }, + + _isInstanceOf: function (type, obj) { + // Cross-frame instanceof check + return Object.prototype.toString.call(obj) === '[object ' + type + ']'; + }, + + _initXHRData: function (options) { + var that = this, + formData, + file = options.files[0], + // Ignore non-multipart setting if not supported: + multipart = options.multipart || !$.support.xhrFileUpload, + paramName = options.paramName[0]; + options.headers = options.headers || {}; + if (options.contentRange) { + options.headers['Content-Range'] = options.contentRange; + } + if (!multipart || options.blob || !this._isInstanceOf('File', file)) { + options.headers['Content-Disposition'] = 'attachment; filename="' + + encodeURI(file.name) + '"'; + } + if (!multipart) { + options.contentType = file.type; + options.data = options.blob || file; + } else if ($.support.xhrFormDataFileUpload) { + if (options.postMessage) { + // window.postMessage does not allow sending FormData + // objects, so we just add the File/Blob objects to + // the formData array and let the postMessage window + // create the FormData object out of this array: + formData = this._getFormData(options); + if (options.blob) { + formData.push({ + name: paramName, + value: options.blob + }); + } else { + $.each(options.files, function (index, file) { + formData.push({ + name: options.paramName[index] || paramName, + value: file + }); + }); + } + } else { + if (that._isInstanceOf('FormData', options.formData)) { + formData = options.formData; + } else { + formData = new FormData(); + $.each(this._getFormData(options), function (index, field) { + formData.append(field.name, field.value); + }); + } + if (options.blob) { + formData.append(paramName, options.blob, file.name); + } else { + $.each(options.files, function (index, file) { + // This check allows the tests to run with + // dummy objects: + if (that._isInstanceOf('File', file) || + that._isInstanceOf('Blob', file)) { + formData.append( + options.paramName[index] || paramName, + file, + file.name + ); + } + }); + } + } + options.data = formData; + } + // Blob reference is not needed anymore, free memory: + options.blob = null; + }, + + _initIframeSettings: function (options) { + var targetHost = $('').prop('href', options.url).prop('host'); + // Setting the dataType to iframe enables the iframe transport: + options.dataType = 'iframe ' + (options.dataType || ''); + // The iframe transport accepts a serialized array as form data: + options.formData = this._getFormData(options); + // Add redirect url to form data on cross-domain uploads: + if (options.redirect && targetHost && targetHost !== location.host) { + options.formData.push({ + name: options.redirectParamName || 'redirect', + value: options.redirect + }); + } + }, + + _initDataSettings: function (options) { + if (this._isXHRUpload(options)) { + if (!this._chunkedUpload(options, true)) { + if (!options.data) { + this._initXHRData(options); + } + this._initProgressListener(options); + } + if (options.postMessage) { + // Setting the dataType to postmessage enables the + // postMessage transport: + options.dataType = 'postmessage ' + (options.dataType || ''); + } + } else { + this._initIframeSettings(options); + } + }, + + _getParamName: function (options) { + var fileInput = $(options.fileInput), + paramName = options.paramName; + if (!paramName) { + paramName = []; + fileInput.each(function () { + var input = $(this), + name = input.prop('name') || 'file', + i = (input.prop('files') || [1]).length; + while (i) { + paramName.push(name); + i -= 1; + } + }); + if (!paramName.length) { + paramName = [fileInput.prop('name') || 'file']; + } + } else if (!$.isArray(paramName)) { + paramName = [paramName]; + } + return paramName; + }, + + _initFormSettings: function (options) { + // Retrieve missing options from the input field and the + // associated form, if available: + if (!options.form || !options.form.length) { + options.form = $(options.fileInput.prop('form')); + // If the given file input doesn't have an associated form, + // use the default widget file input's form: + if (!options.form.length) { + options.form = $(this.options.fileInput.prop('form')); + } + } + options.paramName = this._getParamName(options); + if (!options.url) { + options.url = options.form.prop('action') || location.href; + } + // The HTTP request method must be "POST" or "PUT": + options.type = (options.type || options.form.prop('method') || '') + .toUpperCase(); + if (options.type !== 'POST' && options.type !== 'PUT' && + options.type !== 'PATCH') { + options.type = 'POST'; + } + if (!options.formAcceptCharset) { + options.formAcceptCharset = options.form.attr('accept-charset'); + } + }, + + _getAJAXSettings: function (data) { + var options = $.extend({}, this.options, data); + this._initFormSettings(options); + this._initDataSettings(options); + return options; + }, + + // jQuery 1.6 doesn't provide .state(), + // while jQuery 1.8+ removed .isRejected() and .isResolved(): + _getDeferredState: function (deferred) { + if (deferred.state) { + return deferred.state(); + } + if (deferred.isResolved()) { + return 'resolved'; + } + if (deferred.isRejected()) { + return 'rejected'; + } + return 'pending'; + }, + + // Maps jqXHR callbacks to the equivalent + // methods of the given Promise object: + _enhancePromise: function (promise) { + promise.success = promise.done; + promise.error = promise.fail; + promise.complete = promise.always; + return promise; + }, + + // Creates and returns a Promise object enhanced with + // the jqXHR methods abort, success, error and complete: + _getXHRPromise: function (resolveOrReject, context, args) { + var dfd = $.Deferred(), + promise = dfd.promise(); + context = context || this.options.context || promise; + if (resolveOrReject === true) { + dfd.resolveWith(context, args); + } else if (resolveOrReject === false) { + dfd.rejectWith(context, args); + } + promise.abort = dfd.promise; + return this._enhancePromise(promise); + }, + + // Adds convenience methods to the data callback argument: + _addConvenienceMethods: function (e, data) { + var that = this, + getPromise = function (data) { + return $.Deferred().resolveWith(that, [data]).promise(); + }; + data.process = function (resolveFunc, rejectFunc) { + if (resolveFunc || rejectFunc) { + data._processQueue = this._processQueue = + (this._processQueue || getPromise(this)) + .pipe(resolveFunc, rejectFunc); + } + return this._processQueue || getPromise(this); + }; + data.submit = function () { + if (this.state() !== 'pending') { + data.jqXHR = this.jqXHR = + (that._trigger('submit', e, this) !== false) && + that._onSend(e, this); + } + return this.jqXHR || that._getXHRPromise(); + }; + data.abort = function () { + if (this.jqXHR) { + return this.jqXHR.abort(); + } + return that._getXHRPromise(); + }; + data.state = function () { + if (this.jqXHR) { + return that._getDeferredState(this.jqXHR); + } + if (this._processQueue) { + return that._getDeferredState(this._processQueue); + } + }; + data.progress = function () { + return this._progress; + }; + data.response = function () { + return this._response; + }; + }, + + // Parses the Range header from the server response + // and returns the uploaded bytes: + _getUploadedBytes: function (jqXHR) { + var range = jqXHR.getResponseHeader('Range'), + parts = range && range.split('-'), + upperBytesPos = parts && parts.length > 1 && + parseInt(parts[1], 10); + return upperBytesPos && upperBytesPos + 1; + }, + + // Uploads a file in multiple, sequential requests + // by splitting the file up in multiple blob chunks. + // If the second parameter is true, only tests if the file + // should be uploaded in chunks, but does not invoke any + // upload requests: + _chunkedUpload: function (options, testOnly) { + options.uploadedBytes = options.uploadedBytes || 0; + var that = this, + file = options.files[0], + fs = file.size, + ub = options.uploadedBytes, + mcs = options.maxChunkSize || fs, + slice = this._blobSlice, + dfd = $.Deferred(), + promise = dfd.promise(), + jqXHR, + upload; + if (!(this._isXHRUpload(options) && slice && (ub || mcs < fs)) || + options.data) { + return false; + } + if (testOnly) { + return true; + } + if (ub >= fs) { + file.error = options.i18n('uploadedBytes'); + return this._getXHRPromise( + false, + options.context, + [null, 'error', file.error] + ); + } + // The chunk upload method: + upload = function () { + // Clone the options object for each chunk upload: + var o = $.extend({}, options), + currentLoaded = o._progress.loaded; + o.blob = slice.call( + file, + ub, + ub + mcs, + file.type + ); + // Store the current chunk size, as the blob itself + // will be dereferenced after data processing: + o.chunkSize = o.blob.size; + // Expose the chunk bytes position range: + o.contentRange = 'bytes ' + ub + '-' + + (ub + o.chunkSize - 1) + '/' + fs; + // Process the upload data (the blob and potential form data): + that._initXHRData(o); + // Add progress listeners for this chunk upload: + that._initProgressListener(o); + jqXHR = ((that._trigger('chunksend', null, o) !== false && $.ajax(o)) || + that._getXHRPromise(false, o.context)) + .done(function (result, textStatus, jqXHR) { + ub = that._getUploadedBytes(jqXHR) || + (ub + o.chunkSize); + // Create a progress event if no final progress event + // with loaded equaling total has been triggered + // for this chunk: + if (currentLoaded + o.chunkSize - o._progress.loaded) { + that._onProgress($.Event('progress', { + lengthComputable: true, + loaded: ub - o.uploadedBytes, + total: ub - o.uploadedBytes + }), o); + } + options.uploadedBytes = o.uploadedBytes = ub; + o.result = result; + o.textStatus = textStatus; + o.jqXHR = jqXHR; + that._trigger('chunkdone', null, o); + that._trigger('chunkalways', null, o); + if (ub < fs) { + // File upload not yet complete, + // continue with the next chunk: + upload(); + } else { + dfd.resolveWith( + o.context, + [result, textStatus, jqXHR] + ); + } + }) + .fail(function (jqXHR, textStatus, errorThrown) { + o.jqXHR = jqXHR; + o.textStatus = textStatus; + o.errorThrown = errorThrown; + that._trigger('chunkfail', null, o); + that._trigger('chunkalways', null, o); + dfd.rejectWith( + o.context, + [jqXHR, textStatus, errorThrown] + ); + }); + }; + this._enhancePromise(promise); + promise.abort = function () { + return jqXHR.abort(); + }; + upload(); + return promise; + }, + + _beforeSend: function (e, data) { + if (this._active === 0) { + // the start callback is triggered when an upload starts + // and no other uploads are currently running, + // equivalent to the global ajaxStart event: + this._trigger('start'); + // Set timer for global bitrate progress calculation: + this._bitrateTimer = new this._BitrateTimer(); + // Reset the global progress values: + this._progress.loaded = this._progress.total = 0; + this._progress.bitrate = 0; + } + // Make sure the container objects for the .response() and + // .progress() methods on the data object are available + // and reset to their initial state: + this._initResponseObject(data); + this._initProgressObject(data); + data._progress.loaded = data.loaded = data.uploadedBytes || 0; + data._progress.total = data.total = this._getTotal(data.files) || 1; + data._progress.bitrate = data.bitrate = 0; + this._active += 1; + // Initialize the global progress values: + this._progress.loaded += data.loaded; + this._progress.total += data.total; + }, + + _onDone: function (result, textStatus, jqXHR, options) { + var total = options._progress.total, + response = options._response; + if (options._progress.loaded < total) { + // Create a progress event if no final progress event + // with loaded equaling total has been triggered: + this._onProgress($.Event('progress', { + lengthComputable: true, + loaded: total, + total: total + }), options); + } + response.result = options.result = result; + response.textStatus = options.textStatus = textStatus; + response.jqXHR = options.jqXHR = jqXHR; + this._trigger('done', null, options); + }, + + _onFail: function (jqXHR, textStatus, errorThrown, options) { + var response = options._response; + if (options.recalculateProgress) { + // Remove the failed (error or abort) file upload from + // the global progress calculation: + this._progress.loaded -= options._progress.loaded; + this._progress.total -= options._progress.total; + } + response.jqXHR = options.jqXHR = jqXHR; + response.textStatus = options.textStatus = textStatus; + response.errorThrown = options.errorThrown = errorThrown; + if ('file' in response.jqXHR.responseJSON) { + response.errorThrown = options.errorThrown = response.jqXHR.responseJSON.file.join(", "); + } + this._trigger('fail', null, options); + }, + + _onAlways: function (jqXHRorResult, textStatus, jqXHRorError, options) { + // jqXHRorResult, textStatus and jqXHRorError are added to the + // options object via done and fail callbacks + this._trigger('always', null, options); + }, + + _onSend: function (e, data) { + if (!data.submit) { + this._addConvenienceMethods(e, data); + } + var that = this, + jqXHR, + aborted, + slot, + pipe, + options = that._getAJAXSettings(data), + send = function () { + that._sending += 1; + // Set timer for bitrate progress calculation: + options._bitrateTimer = new that._BitrateTimer(); + jqXHR = jqXHR || ( + ((aborted || that._trigger('send', e, options) === false) && + that._getXHRPromise(false, options.context, aborted)) || + that._chunkedUpload(options) || $.ajax(options) + ).done(function (result, textStatus, jqXHR) { + that._onDone(result, textStatus, jqXHR, options); + }).fail(function (jqXHR, textStatus, errorThrown) { + that._onFail(jqXHR, textStatus, errorThrown, options); + }).always(function (jqXHRorResult, textStatus, jqXHRorError) { + that._onAlways( + jqXHRorResult, + textStatus, + jqXHRorError, + options + ); + that._sending -= 1; + that._active -= 1; + if (options.limitConcurrentUploads && + options.limitConcurrentUploads > that._sending) { + // Start the next queued upload, + // that has not been aborted: + var nextSlot = that._slots.shift(); + while (nextSlot) { + if (that._getDeferredState(nextSlot) === 'pending') { + nextSlot.resolve(); + break; + } + nextSlot = that._slots.shift(); + } + } + if (that._active === 0) { + // The stop callback is triggered when all uploads have + // been completed, equivalent to the global ajaxStop event: + that._trigger('stop'); + } + }); + return jqXHR; + }; + this._beforeSend(e, options); + if (this.options.sequentialUploads || + (this.options.limitConcurrentUploads && + this.options.limitConcurrentUploads <= this._sending)) { + if (this.options.limitConcurrentUploads > 1) { + slot = $.Deferred(); + this._slots.push(slot); + pipe = slot.pipe(send); + } else { + this._sequence = this._sequence.pipe(send, send); + pipe = this._sequence; + } + // Return the piped Promise object, enhanced with an abort method, + // which is delegated to the jqXHR object of the current upload, + // and jqXHR callbacks mapped to the equivalent Promise methods: + pipe.abort = function () { + aborted = [undefined, 'abort', 'abort']; + if (!jqXHR) { + if (slot) { + slot.rejectWith(options.context, aborted); + } + return send(); + } + return jqXHR.abort(); + }; + return this._enhancePromise(pipe); + } + return send(); + }, + + _onAdd: function (e, data) { + var that = this, + result = true, + options = $.extend({}, this.options, data), + limit = options.limitMultiFileUploads, + paramName = this._getParamName(options), + paramNameSet, + paramNameSlice, + fileSet, + i; + if (!(options.singleFileUploads || limit) || + !this._isXHRUpload(options)) { + fileSet = [data.files]; + paramNameSet = [paramName]; + } else if (!options.singleFileUploads && limit) { + fileSet = []; + paramNameSet = []; + for (i = 0; i < data.files.length; i += limit) { + fileSet.push(data.files.slice(i, i + limit)); + paramNameSlice = paramName.slice(i, i + limit); + if (!paramNameSlice.length) { + paramNameSlice = paramName; + } + paramNameSet.push(paramNameSlice); + } + } else { + paramNameSet = paramName; + } + data.originalFiles = data.files; + $.each(fileSet || data.files, function (index, element) { + var newData = $.extend({}, data); + newData.files = fileSet ? element : [element]; + newData.paramName = paramNameSet[index]; + that._initResponseObject(newData); + that._initProgressObject(newData); + that._addConvenienceMethods(e, newData); + result = that._trigger('add', e, newData); + return result; + }); + return result; + }, + + _replaceFileInput: function (input) { + var inputClone = input.clone(true); + $('
').append(inputClone)[0].reset(); + // Detaching allows to insert the fileInput on another form + // without loosing the file input value: + input.after(inputClone).detach(); + // Avoid memory leaks with the detached file input: + $.cleanData(input.unbind('remove')); + // Replace the original file input element in the fileInput + // elements set with the clone, which has been copied including + // event handlers: + this.options.fileInput = this.options.fileInput.map(function (i, el) { + if (el === input[0]) { + return inputClone[0]; + } + return el; + }); + // If the widget has been initialized on the file input itself, + // override this.element with the file input clone: + if (input[0] === this.element[0]) { + this.element = inputClone; + } + }, + + _handleFileTreeEntry: function (entry, path) { + var that = this, + dfd = $.Deferred(), + errorHandler = function (e) { + if (e && !e.entry) { + e.entry = entry; + } + // Since $.when returns immediately if one + // Deferred is rejected, we use resolve instead. + // This allows valid files and invalid items + // to be returned together in one set: + dfd.resolve([e]); + }, + dirReader; + path = path || ''; + if (entry.isFile) { + if (entry._file) { + // Workaround for Chrome bug #149735 + entry._file.relativePath = path; + dfd.resolve(entry._file); + } else { + entry.file(function (file) { + file.relativePath = path; + dfd.resolve(file); + }, errorHandler); + } + } else if (entry.isDirectory) { + dirReader = entry.createReader(); + dirReader.readEntries(function (entries) { + that._handleFileTreeEntries( + entries, + path + entry.name + '/' + ).done(function (files) { + dfd.resolve(files); + }).fail(errorHandler); + }, errorHandler); + } else { + // Return an empy list for file system items + // other than files or directories: + dfd.resolve([]); + } + return dfd.promise(); + }, + + _handleFileTreeEntries: function (entries, path) { + var that = this; + return $.when.apply( + $, + $.map(entries, function (entry) { + return that._handleFileTreeEntry(entry, path); + }) + ).pipe(function () { + return Array.prototype.concat.apply( + [], + arguments + ); + }); + }, + + _getDroppedFiles: function (dataTransfer) { + dataTransfer = dataTransfer || {}; + var items = dataTransfer.items; + if (items && items.length && (items[0].webkitGetAsEntry || + items[0].getAsEntry)) { + return this._handleFileTreeEntries( + $.map(items, function (item) { + var entry; + if (item.webkitGetAsEntry) { + entry = item.webkitGetAsEntry(); + if (entry) { + // Workaround for Chrome bug #149735: + entry._file = item.getAsFile(); + } + return entry; + } + return item.getAsEntry(); + }) + ); + } + return $.Deferred().resolve( + $.makeArray(dataTransfer.files) + ).promise(); + }, + + _getSingleFileInputFiles: function (fileInput) { + fileInput = $(fileInput); + var entries = fileInput.prop('webkitEntries') || + fileInput.prop('entries'), + files, + value; + if (entries && entries.length) { + return this._handleFileTreeEntries(entries); + } + files = $.makeArray(fileInput.prop('files')); + if (!files.length) { + value = fileInput.prop('value'); + if (!value) { + return $.Deferred().resolve([]).promise(); + } + // If the files property is not available, the browser does not + // support the File API and we add a pseudo File object with + // the input value as name with path information removed: + files = [{name: value.replace(/^.*\\/, '')}]; + } else if (files[0].name === undefined && files[0].fileName) { + // File normalization for Safari 4 and Firefox 3: + $.each(files, function (index, file) { + file.name = file.fileName; + file.size = file.fileSize; + }); + } + return $.Deferred().resolve(files).promise(); + }, + + _getFileInputFiles: function (fileInput) { + if (!(fileInput instanceof $) || fileInput.length === 1) { + return this._getSingleFileInputFiles(fileInput); + } + return $.when.apply( + $, + $.map(fileInput, this._getSingleFileInputFiles) + ).pipe(function () { + return Array.prototype.concat.apply( + [], + arguments + ); + }); + }, + + _onChange: function (e) { + var that = this, + data = { + fileInput: $(e.target), + form: $(e.target.form) + }; + this._getFileInputFiles(data.fileInput).always(function (files) { + data.files = files; + if (that.options.replaceFileInput) { + that._replaceFileInput(data.fileInput); + } + if (that._trigger('change', e, data) !== false) { + that._onAdd(e, data); + } + }); + }, + + _onPaste: function (e) { + var items = e.originalEvent && e.originalEvent.clipboardData && + e.originalEvent.clipboardData.items, + data = {files: []}; + if (items && items.length) { + $.each(items, function (index, item) { + var file = item.getAsFile && item.getAsFile(); + if (file) { + data.files.push(file); + } + }); + if (this._trigger('paste', e, data) === false || + this._onAdd(e, data) === false) { + return false; + } + } + }, + + _onDrop: function (e) { + e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; + var that = this, + dataTransfer = e.dataTransfer, + data = {}; + if (dataTransfer && dataTransfer.files && dataTransfer.files.length) { + e.preventDefault(); + this._getDroppedFiles(dataTransfer).always(function (files) { + data.files = files; + if (that._trigger('drop', e, data) !== false) { + that._onAdd(e, data); + } + }); + } + }, + + _onDragOver: function (e) { + e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; + var dataTransfer = e.dataTransfer; + if (dataTransfer) { + if (this._trigger('dragover', e) === false) { + return false; + } + if ($.inArray('Files', dataTransfer.types) !== -1) { + dataTransfer.dropEffect = 'copy'; + e.preventDefault(); + } + } + }, + + _initEventHandlers: function () { + if (this._isXHRUpload(this.options)) { + this._on(this.options.dropZone, { + dragover: this._onDragOver, + drop: this._onDrop + }); + this._on(this.options.pasteZone, { + paste: this._onPaste + }); + } + if ($.support.fileInput) { + this._on(this.options.fileInput, { + change: this._onChange + }); + } + }, + + _destroyEventHandlers: function () { + this._off(this.options.dropZone, 'dragover drop'); + this._off(this.options.pasteZone, 'paste'); + this._off(this.options.fileInput, 'change'); + }, + + _setOption: function (key, value) { + var reinit = $.inArray(key, this._specialOptions) !== -1; + if (reinit) { + this._destroyEventHandlers(); + } + this._super(key, value); + if (reinit) { + this._initSpecialOptions(); + this._initEventHandlers(); + } + }, + + _initSpecialOptions: function () { + var options = this.options; + if (options.fileInput === undefined) { + options.fileInput = this.element.is('input[type="file"]') ? + this.element : this.element.find('input[type="file"]'); + } else if (!(options.fileInput instanceof $)) { + options.fileInput = $(options.fileInput); + } + if (!(options.dropZone instanceof $)) { + options.dropZone = $(options.dropZone); + } + if (!(options.pasteZone instanceof $)) { + options.pasteZone = $(options.pasteZone); + } + }, + + _getRegExp: function (str) { + var parts = str.split('/'), + modifiers = parts.pop(); + parts.shift(); + return new RegExp(parts.join('/'), modifiers); + }, + + _isRegExpOption: function (key, value) { + return key !== 'url' && $.type(value) === 'string' && + /^\/.*\/[igm]{0,3}$/.test(value); + }, + + _initDataAttributes: function () { + var that = this, + options = this.options; + // Initialize options set via HTML5 data-attributes: + $.each( + $(this.element[0].cloneNode(false)).data(), + function (key, value) { + if (that._isRegExpOption(key, value)) { + value = that._getRegExp(value); + } + options[key] = value; + } + ); + }, + + _create: function () { + this._initDataAttributes(); + this._initSpecialOptions(); + this._slots = []; + this._sequence = this._getXHRPromise(true); + this._sending = this._active = 0; + this._initProgressObject(this); + this._initEventHandlers(); + }, + + // This method is exposed to the widget API and allows to query + // the number of active uploads: + active: function () { + return this._active; + }, + + // This method is exposed to the widget API and allows to query + // the widget upload progress. + // It returns an object with loaded, total and bitrate properties + // for the running uploads: + progress: function () { + return this._progress; + }, + + // This method is exposed to the widget API and allows adding files + // using the fileupload API. The data parameter accepts an object which + // must have a files property and can contain additional options: + // .fileupload('add', {files: filesList}); + add: function (data) { + var that = this; + if (!data || this.options.disabled) { + return; + } + if (data.fileInput && !data.files) { + this._getFileInputFiles(data.fileInput).always(function (files) { + data.files = files; + that._onAdd(null, data); + }); + } else { + data.files = $.makeArray(data.files); + this._onAdd(null, data); + } + }, + + // This method is exposed to the widget API and allows sending files + // using the fileupload API. The data parameter accepts an object which + // must have a files or fileInput property and can contain additional options: + // .fileupload('send', {files: filesList}); + // The method returns a Promise object for the file upload call. + send: function (data) { + if (data && !this.options.disabled) { + if (data.fileInput && !data.files) { + var that = this, + dfd = $.Deferred(), + promise = dfd.promise(), + jqXHR, + aborted; + promise.abort = function () { + aborted = true; + if (jqXHR) { + return jqXHR.abort(); + } + dfd.reject(null, 'abort', 'abort'); + return promise; + }; + this._getFileInputFiles(data.fileInput).always( + function (files) { + if (aborted) { + return; + } + if (!files.length) { + dfd.reject(); + return; + } + data.files = files; + jqXHR = that._onSend(null, data).then( + function (result, textStatus, jqXHR) { + dfd.resolve(result, textStatus, jqXHR); + }, + function (jqXHR, textStatus, errorThrown) { + dfd.reject(jqXHR, textStatus, errorThrown); + } + ); + } + ); + return this._enhancePromise(promise); + } + data.files = $.makeArray(data.files); + if (data.files.length) { + return this._onSend(null, data); + } + } + return this._getXHRPromise(false, data && data.context); + } + + }); + +})); diff --git a/static/file_upload/js/jquery.iframe-transport.js b/static/file_upload/js/jquery.iframe-transport.js new file mode 100644 index 00000000..073c5fbe --- /dev/null +++ b/static/file_upload/js/jquery.iframe-transport.js @@ -0,0 +1,205 @@ +/* + * jQuery Iframe Transport Plugin 1.7 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2011, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint unparam: true, nomen: true */ +/*global define, window, document */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define(['jquery'], factory); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + + // Helper variable to create unique names for the transport iframes: + var counter = 0; + + // The iframe transport accepts three additional options: + // options.fileInput: a jQuery collection of file input fields + // options.paramName: the parameter name for the file form data, + // overrides the name property of the file input field(s), + // can be a string or an array of strings. + // options.formData: an array of objects with name and value properties, + // equivalent to the return data of .serializeArray(), e.g.: + // [{name: 'a', value: 1}, {name: 'b', value: 2}] + $.ajaxTransport('iframe', function (options) { + if (options.async) { + var form, + iframe, + addParamChar; + return { + send: function (_, completeCallback) { + form = $('
'); + form.attr('accept-charset', options.formAcceptCharset); + addParamChar = /\?/.test(options.url) ? '&' : '?'; + // XDomainRequest only supports GET and POST: + if (options.type === 'DELETE') { + options.url = options.url + addParamChar + '_method=DELETE'; + options.type = 'POST'; + } else if (options.type === 'PUT') { + options.url = options.url + addParamChar + '_method=PUT'; + options.type = 'POST'; + } else if (options.type === 'PATCH') { + options.url = options.url + addParamChar + '_method=PATCH'; + options.type = 'POST'; + } + // javascript:false as initial iframe src + // prevents warning popups on HTTPS in IE6. + // IE versions below IE8 cannot set the name property of + // elements that have already been added to the DOM, + // so we set the name along with the iframe HTML markup: + counter += 1; + iframe = $( + '' + ).bind('load', function () { + var fileInputClones, + paramNames = $.isArray(options.paramName) ? + options.paramName : [options.paramName]; + iframe + .unbind('load') + .bind('load', function () { + var response; + // Wrap in a try/catch block to catch exceptions thrown + // when trying to access cross-domain iframe contents: + try { + response = iframe.contents(); + // Google Chrome and Firefox do not throw an + // exception when calling iframe.contents() on + // cross-domain requests, so we unify the response: + if (!response.length || !response[0].firstChild) { + throw new Error(); + } + } catch (e) { + response = undefined; + } + // The complete callback returns the + // iframe content document as response object: + completeCallback( + 200, + 'success', + {'iframe': response} + ); + // Fix for IE endless progress bar activity bug + // (happens on form submits to iframe targets): + $('') + .appendTo(form); + window.setTimeout(function () { + // Removing the form in a setTimeout call + // allows Chrome's developer tools to display + // the response result + form.remove(); + }, 0); + }); + form + .prop('target', iframe.prop('name')) + .prop('action', options.url) + .prop('method', options.type); + if (options.formData) { + $.each(options.formData, function (index, field) { + $('') + .prop('name', field.name) + .val(field.value) + .appendTo(form); + }); + } + if (options.fileInput && options.fileInput.length && + options.type === 'POST') { + fileInputClones = options.fileInput.clone(); + // Insert a clone for each file input field: + options.fileInput.after(function (index) { + return fileInputClones[index]; + }); + if (options.paramName) { + options.fileInput.each(function (index) { + $(this).prop( + 'name', + paramNames[index] || options.paramName + ); + }); + } + // Appending the file input fields to the hidden form + // removes them from their original location: + form + .append(options.fileInput) + .prop('enctype', 'multipart/form-data') + // enctype must be set as encoding for IE: + .prop('encoding', 'multipart/form-data'); + } + form.submit(); + // Insert the file input fields at their original location + // by replacing the clones with the originals: + if (fileInputClones && fileInputClones.length) { + options.fileInput.each(function (index, input) { + var clone = $(fileInputClones[index]); + $(input).prop('name', clone.prop('name')); + clone.replaceWith(input); + }); + } + }); + form.append(iframe).appendTo(document.body); + }, + abort: function () { + if (iframe) { + // javascript:false as iframe src aborts the request + // and prevents warning popups on HTTPS in IE6. + // concat is used to avoid the "Script URL" JSLint error: + iframe + .unbind('load') + .prop('src', 'javascript'.concat(':false;')); + } + if (form) { + form.remove(); + } + } + }; + } + }); + + // The iframe transport returns the iframe content document as response. + // The following adds converters from iframe to text, json, html, xml + // and script. + // Please note that the Content-Type for JSON responses has to be text/plain + // or text/html, if the browser doesn't include application/json in the + // Accept header, else IE will show a download dialog. + // The Content-Type for XML responses on the other hand has to be always + // application/xml or text/xml, so IE properly parses the XML response. + // See also + // https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation + $.ajaxSetup({ + converters: { + 'iframe text': function (iframe) { + return iframe && $(iframe[0].body).text(); + }, + 'iframe json': function (iframe) { + return iframe && $.parseJSON($(iframe[0].body).text()); + }, + 'iframe html': function (iframe) { + return iframe && $(iframe[0].body).html(); + }, + 'iframe xml': function (iframe) { + var xmlDoc = iframe && iframe[0]; + return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc : + $.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) || + $(xmlDoc.body).html()); + }, + 'iframe script': function (iframe) { + return iframe && $.globalEval($(iframe[0].body).text()); + } + } + }); + +})); diff --git a/static/file_upload/js/jquery.ui.widget.js b/static/file_upload/js/jquery.ui.widget.js new file mode 100644 index 00000000..9da8673a --- /dev/null +++ b/static/file_upload/js/jquery.ui.widget.js @@ -0,0 +1,282 @@ +/* + * jQuery UI Widget 1.8.18+amd + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Widget + */ + +(function (factory) { + if (typeof define === "function" && define.amd) { + // Register as an anonymous AMD module: + define(["jquery"], factory); + } else { + // Browser globals: + factory(jQuery); + } +}(function( $, undefined ) { + +// jQuery 1.4+ +if ( $.cleanData ) { + var _cleanData = $.cleanData; + $.cleanData = function( elems ) { + for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { + try { + $( elem ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + } + _cleanData( elems ); + }; +} else { + var _remove = $.fn.remove; + $.fn.remove = function( selector, keepData ) { + return this.each(function() { + if ( !keepData ) { + if ( !selector || $.filter( selector, [ this ] ).length ) { + $( "*", this ).add( [ this ] ).each(function() { + try { + $( this ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + }); + } + } + return _remove.call( $(this), selector, keepData ); + }); + }; +} + +$.widget = function( name, base, prototype ) { + var namespace = name.split( "." )[ 0 ], + fullName; + name = name.split( "." )[ 1 ]; + fullName = namespace + "-" + name; + + if ( !prototype ) { + prototype = base; + base = $.Widget; + } + + // create selector for plugin + $.expr[ ":" ][ fullName ] = function( elem ) { + return !!$.data( elem, name ); + }; + + $[ namespace ] = $[ namespace ] || {}; + $[ namespace ][ name ] = function( options, element ) { + // allow instantiation without initializing for simple inheritance + if ( arguments.length ) { + this._createWidget( options, element ); + } + }; + + var basePrototype = new base(); + // we need to make the options hash a property directly on the new instance + // otherwise we'll modify the options hash on the prototype that we're + // inheriting from +// $.each( basePrototype, function( key, val ) { +// if ( $.isPlainObject(val) ) { +// basePrototype[ key ] = $.extend( {}, val ); +// } +// }); + basePrototype.options = $.extend( true, {}, basePrototype.options ); + $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { + namespace: namespace, + widgetName: name, + widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name, + widgetBaseClass: fullName + }, prototype ); + + $.widget.bridge( name, $[ namespace ][ name ] ); +}; + +$.widget.bridge = function( name, object ) { + $.fn[ name ] = function( options ) { + var isMethodCall = typeof options === "string", + args = Array.prototype.slice.call( arguments, 1 ), + returnValue = this; + + // allow multiple hashes to be passed on init + options = !isMethodCall && args.length ? + $.extend.apply( null, [ true, options ].concat(args) ) : + options; + + // prevent calls to internal methods + if ( isMethodCall && options.charAt( 0 ) === "_" ) { + return returnValue; + } + + if ( isMethodCall ) { + this.each(function() { + var instance = $.data( this, name ), + methodValue = instance && $.isFunction( instance[options] ) ? + instance[ options ].apply( instance, args ) : + instance; + // TODO: add this back in 1.9 and use $.error() (see #5972) +// if ( !instance ) { +// throw "cannot call methods on " + name + " prior to initialization; " + +// "attempted to call method '" + options + "'"; +// } +// if ( !$.isFunction( instance[options] ) ) { +// throw "no such method '" + options + "' for " + name + " widget instance"; +// } +// var methodValue = instance[ options ].apply( instance, args ); + if ( methodValue !== instance && methodValue !== undefined ) { + returnValue = methodValue; + return false; + } + }); + } else { + this.each(function() { + var instance = $.data( this, name ); + if ( instance ) { + instance.option( options || {} )._init(); + } else { + $.data( this, name, new object( options, this ) ); + } + }); + } + + return returnValue; + }; +}; + +$.Widget = function( options, element ) { + // allow instantiation without initializing for simple inheritance + if ( arguments.length ) { + this._createWidget( options, element ); + } +}; + +$.Widget.prototype = { + widgetName: "widget", + widgetEventPrefix: "", + options: { + disabled: false + }, + _createWidget: function( options, element ) { + // $.widget.bridge stores the plugin instance, but we do it anyway + // so that it's stored even before the _create function runs + $.data( element, this.widgetName, this ); + this.element = $( element ); + this.options = $.extend( true, {}, + this.options, + this._getCreateOptions(), + options ); + + var self = this; + this.element.bind( "remove." + this.widgetName, function() { + self.destroy(); + }); + + this._create(); + this._trigger( "create" ); + this._init(); + }, + _getCreateOptions: function() { + return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; + }, + _create: function() {}, + _init: function() {}, + + destroy: function() { + this.element + .unbind( "." + this.widgetName ) + .removeData( this.widgetName ); + this.widget() + .unbind( "." + this.widgetName ) + .removeAttr( "aria-disabled" ) + .removeClass( + this.widgetBaseClass + "-disabled " + + "ui-state-disabled" ); + }, + + widget: function() { + return this.element; + }, + + option: function( key, value ) { + var options = key; + + if ( arguments.length === 0 ) { + // don't return a reference to the internal hash + return $.extend( {}, this.options ); + } + + if (typeof key === "string" ) { + if ( value === undefined ) { + return this.options[ key ]; + } + options = {}; + options[ key ] = value; + } + + this._setOptions( options ); + + return this; + }, + _setOptions: function( options ) { + var self = this; + $.each( options, function( key, value ) { + self._setOption( key, value ); + }); + + return this; + }, + _setOption: function( key, value ) { + this.options[ key ] = value; + + if ( key === "disabled" ) { + this.widget() + [ value ? "addClass" : "removeClass"]( + this.widgetBaseClass + "-disabled" + " " + + "ui-state-disabled" ) + .attr( "aria-disabled", value ); + } + + return this; + }, + + enable: function() { + return this._setOption( "disabled", false ); + }, + disable: function() { + return this._setOption( "disabled", true ); + }, + + _trigger: function( type, event, data ) { + var prop, orig, + callback = this.options[ type ]; + + data = data || {}; + event = $.Event( event ); + event.type = ( type === this.widgetEventPrefix ? + type : + this.widgetEventPrefix + type ).toLowerCase(); + // the original event may come from any element + // so we need to reset the target on the new event + event.target = this.element[ 0 ]; + + // copy original event properties over to the new event + orig = event.originalEvent; + if ( orig ) { + for ( prop in orig ) { + if ( !( prop in event ) ) { + event[ prop ] = orig[ prop ]; + } + } + } + + this.element.trigger( event, data ); + + return !( $.isFunction(callback) && + callback.call( this.element[0], event, data ) === false || + event.isDefaultPrevented() ); + } +}; + +})); diff --git a/static/file_upload/js/load-image.min.js b/static/file_upload/js/load-image.min.js new file mode 100644 index 00000000..8f04e851 --- /dev/null +++ b/static/file_upload/js/load-image.min.js @@ -0,0 +1 @@ +(function(e){"use strict";var t=function(e,i,a){var n,r,o=document.createElement("img");if(o.onerror=i,o.onload=function(){!r||a&&a.noRevoke||t.revokeObjectURL(r),i&&i(t.scale(o,a))},t.isInstanceOf("Blob",e)||t.isInstanceOf("File",e))n=r=t.createObjectURL(e),o._type=e.type;else{if("string"!=typeof e)return!1;n=e,a&&a.crossOrigin&&(o.crossOrigin=a.crossOrigin)}return n?(o.src=n,o):t.readFile(e,function(e){var t=e.target;t&&t.result?o.src=t.result:i&&i(e)})},i=window.createObjectURL&&window||window.URL&&URL.revokeObjectURL&&URL||window.webkitURL&&webkitURL;t.isInstanceOf=function(e,t){return Object.prototype.toString.call(t)==="[object "+e+"]"},t.transformCoordinates=function(){},t.getTransformedOptions=function(e){return e},t.renderImageToCanvas=function(e,t,i,a,n,r,o,s,d,l){return e.getContext("2d").drawImage(t,i,a,n,r,o,s,d,l),e},t.hasCanvasOption=function(e){return e.canvas||e.crop},t.scale=function(e,i){i=i||{};var a,n,r,o,s,d,l,c,u,g=document.createElement("canvas"),f=e.getContext||t.hasCanvasOption(i)&&g.getContext,h=e.naturalWidth||e.width,m=e.naturalHeight||e.height,p=h,S=m,b=function(){var e=Math.max((r||p)/p,(o||S)/S);e>1&&(p=Math.ceil(p*e),S=Math.ceil(S*e))},v=function(){var e=Math.min((a||p)/p,(n||S)/S);1>e&&(p=Math.ceil(p*e),S=Math.ceil(S*e))};return f&&(i=t.getTransformedOptions(i),l=i.left||0,c=i.top||0,i.sourceWidth?(s=i.sourceWidth,void 0!==i.right&&void 0===i.left&&(l=h-s-i.right)):s=h-l-(i.right||0),i.sourceHeight?(d=i.sourceHeight,void 0!==i.bottom&&void 0===i.top&&(c=m-d-i.bottom)):d=m-c-(i.bottom||0),p=s,S=d),a=i.maxWidth,n=i.maxHeight,r=i.minWidth,o=i.minHeight,f&&a&&n&&i.crop?(p=a,S=n,u=s/d-a/n,0>u?(d=n*s/a,void 0===i.top&&void 0===i.bottom&&(c=(m-d)/2)):u>0&&(s=a*d/n,void 0===i.left&&void 0===i.right&&(l=(h-s)/2))):((i.contain||i.cover)&&(r=a=a||r,o=n=n||o),i.cover?(v(),b()):(b(),v())),f?(g.width=p,g.height=S,t.transformCoordinates(g,i),t.renderImageToCanvas(g,e,l,c,s,d,0,0,p,S)):(e.width=p,e.height=S,e)},t.createObjectURL=function(e){return i?i.createObjectURL(e):!1},t.revokeObjectURL=function(e){return i?i.revokeObjectURL(e):!1},t.readFile=function(e,t,i){if(window.FileReader){var a=new FileReader;if(a.onload=a.onerror=t,i=i||"readAsDataURL",a[i])return a[i](e),a}return!1},"function"==typeof define&&define.amd?define(function(){return t}):e.loadImage=t})(this),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";if(window.navigator&&window.navigator.platform&&/iP(hone|od|ad)/.test(window.navigator.platform)){var t=e.renderImageToCanvas;e.detectSubsampling=function(e){var t,i;return e.width*e.height>1048576?(t=document.createElement("canvas"),t.width=t.height=1,i=t.getContext("2d"),i.drawImage(e,-e.width+1,0),0===i.getImageData(0,0,1,1).data[3]):!1},e.detectVerticalSquash=function(e,t){var i,a,n,r,o,s=e.naturalHeight||e.height,d=document.createElement("canvas"),l=d.getContext("2d");for(t&&(s/=2),d.width=1,d.height=s,l.drawImage(e,0,0),i=l.getImageData(0,0,1,s).data,a=0,n=s,r=s;r>a;)o=i[4*(r-1)+3],0===o?n=r:a=r,r=n+a>>1;return r/s||1},e.renderImageToCanvas=function(i,a,n,r,o,s,d,l,c,u){if("image/jpeg"===a._type){var g,f,h,m,p=i.getContext("2d"),S=document.createElement("canvas"),b=1024,v=S.getContext("2d");if(S.width=b,S.height=b,p.save(),g=e.detectSubsampling(a),g&&(n/=2,r/=2,o/=2,s/=2),f=e.detectVerticalSquash(a,g),g||1!==f){for(r*=f,c=Math.ceil(b*c/o),u=Math.ceil(b*u/s/f),l=0,m=0;s>m;){for(d=0,h=0;o>h;)v.clearRect(0,0,b,b),v.drawImage(a,n,r,o,s,-h,-m,o,s),p.drawImage(S,0,0,b,b,d,l,c,u),h+=b,d+=c;m+=b,l+=u}return p.restore(),i}}return t(i,a,n,r,o,s,d,l,c,u)}}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";var t=e.hasCanvasOption;e.hasCanvasOption=function(e){return t(e)||e.orientation},e.transformCoordinates=function(e,t){var i=e.getContext("2d"),a=e.width,n=e.height,r=t.orientation;if(r)switch(r>4&&(e.width=n,e.height=a),r){case 2:i.translate(a,0),i.scale(-1,1);break;case 3:i.translate(a,n),i.rotate(Math.PI);break;case 4:i.translate(0,n),i.scale(1,-1);break;case 5:i.rotate(.5*Math.PI),i.scale(1,-1);break;case 6:i.rotate(.5*Math.PI),i.translate(0,-n);break;case 7:i.rotate(.5*Math.PI),i.translate(a,-n),i.scale(-1,1);break;case 8:i.rotate(-.5*Math.PI),i.translate(-a,0)}},e.getTransformedOptions=function(e){if(!e.orientation||1===e.orientation)return e;var t,i={};for(t in e)e.hasOwnProperty(t)&&(i[t]=e[t]);switch(e.orientation){case 2:i.left=e.right,i.right=e.left;break;case 3:i.left=e.right,i.top=e.bottom,i.right=e.left,i.bottom=e.top;break;case 4:i.top=e.bottom,i.bottom=e.top;break;case 5:i.left=e.top,i.top=e.left,i.right=e.bottom,i.bottom=e.right;break;case 6:i.left=e.top,i.top=e.right,i.right=e.bottom,i.bottom=e.left;break;case 7:i.left=e.bottom,i.top=e.right,i.right=e.top,i.bottom=e.left;break;case 8:i.left=e.bottom,i.top=e.left,i.right=e.top,i.bottom=e.right}return e.orientation>4&&(i.maxWidth=e.maxHeight,i.maxHeight=e.maxWidth,i.minWidth=e.minHeight,i.minHeight=e.minWidth,i.sourceWidth=e.sourceHeight,i.sourceHeight=e.sourceWidth),i}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";var t=window.Blob&&(Blob.prototype.slice||Blob.prototype.webkitSlice||Blob.prototype.mozSlice);e.blobSlice=t&&function(){var e=this.slice||this.webkitSlice||this.mozSlice;return e.apply(this,arguments)},e.metaDataParsers={jpeg:{65505:[]}},e.parseMetaData=function(t,i,a){a=a||{};var n=this,r=a.maxMetaDataSize||262144,o={},s=!(window.DataView&&t&&t.size>=12&&"image/jpeg"===t.type&&e.blobSlice);(s||!e.readFile(e.blobSlice.call(t,0,r),function(t){var r,s,d,l,c=t.target.result,u=new DataView(c),g=2,f=u.byteLength-4,h=g;if(65496===u.getUint16(0)){for(;f>g&&(r=u.getUint16(g),r>=65504&&65519>=r||65534===r);){if(s=u.getUint16(g+2)+2,g+s>u.byteLength){console.log("Invalid meta data: Invalid segment size.");break}if(d=e.metaDataParsers.jpeg[r])for(l=0;d.length>l;l+=1)d[l].call(n,u,g,s,o,a);g+=s,h=g}!a.disableImageHead&&h>6&&(o.imageHead=c.slice?c.slice(0,h):new Uint8Array(c).subarray(0,h))}else console.log("Invalid JPEG file: Missing JPEG marker.");i(o)},"readAsArrayBuffer"))&&i(o)}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image","load-image-meta"],e):e(window.loadImage)}(function(e){"use strict";e.ExifMap=function(){return this},e.ExifMap.prototype.map={Orientation:274},e.ExifMap.prototype.get=function(e){return this[e]||this[this.map[e]]},e.getExifThumbnail=function(e,t,i){var a,n,r;if(!i||t+i>e.byteLength)return console.log("Invalid Exif data: Invalid thumbnail data."),void 0;for(a=[],n=0;i>n;n+=1)r=e.getUint8(t+n),a.push((16>r?"0":"")+r.toString(16));return"data:image/jpeg,%"+a.join("%")},e.exifTagTypes={1:{getValue:function(e,t){return e.getUint8(t)},size:1},2:{getValue:function(e,t){return String.fromCharCode(e.getUint8(t))},size:1,ascii:!0},3:{getValue:function(e,t,i){return e.getUint16(t,i)},size:2},4:{getValue:function(e,t,i){return e.getUint32(t,i)},size:4},5:{getValue:function(e,t,i){return e.getUint32(t,i)/e.getUint32(t+4,i)},size:8},9:{getValue:function(e,t,i){return e.getInt32(t,i)},size:4},10:{getValue:function(e,t,i){return e.getInt32(t,i)/e.getInt32(t+4,i)},size:8}},e.exifTagTypes[7]=e.exifTagTypes[1],e.getExifValue=function(t,i,a,n,r,o){var s,d,l,c,u,g,f=e.exifTagTypes[n];if(!f)return console.log("Invalid Exif data: Invalid tag type."),void 0;if(s=f.size*r,d=s>4?i+t.getUint32(a+8,o):a+8,d+s>t.byteLength)return console.log("Invalid Exif data: Invalid data offset."),void 0;if(1===r)return f.getValue(t,d,o);for(l=[],c=0;r>c;c+=1)l[c]=f.getValue(t,d+c*f.size,o);if(f.ascii){for(u="",c=0;l.length>c&&(g=l[c],"\0"!==g);c+=1)u+=g;return u}return l},e.parseExifTag=function(t,i,a,n,r){var o=t.getUint16(a,n);r.exif[o]=e.getExifValue(t,i,a,t.getUint16(a+2,n),t.getUint32(a+4,n),n)},e.parseExifTags=function(e,t,i,a,n){var r,o,s;if(i+6>e.byteLength)return console.log("Invalid Exif data: Invalid directory offset."),void 0;if(r=e.getUint16(i,a),o=i+2+12*r,o+4>e.byteLength)return console.log("Invalid Exif data: Invalid directory size."),void 0;for(s=0;r>s;s+=1)this.parseExifTag(e,t,i+2+12*s,a,n);return e.getUint32(o,a)},e.parseExifData=function(t,i,a,n,r){if(!r.disableExif){var o,s,d,l=i+10;if(1165519206===t.getUint32(i+4)){if(l+8>t.byteLength)return console.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==t.getUint16(i+8))return console.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(t.getUint16(l)){case 18761:o=!0;break;case 19789:o=!1;break;default:return console.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==t.getUint16(l+2,o))return console.log("Invalid Exif data: Missing TIFF marker."),void 0;s=t.getUint32(l+4,o),n.exif=new e.ExifMap,s=e.parseExifTags(t,l,l+s,o,n),s&&!r.disableExifThumbnail&&(d={exif:{}},s=e.parseExifTags(t,l,l+s,o,d),d.exif[513]&&(n.exif.Thumbnail=e.getExifThumbnail(t,l+d.exif[513],d.exif[514]))),n.exif[34665]&&!r.disableExifSub&&e.parseExifTags(t,l,l+n.exif[34665],o,n),n.exif[34853]&&!r.disableExifGps&&e.parseExifTags(t,l,l+n.exif[34853],o,n)}}},e.metaDataParsers.jpeg[65505].push(e.parseExifData)}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image","load-image-exif"],e):e(window.loadImage)}(function(e){"use strict";var t,i,a;e.ExifMap.prototype.tags={256:"ImageWidth",257:"ImageHeight",34665:"ExifIFDPointer",34853:"GPSInfoIFDPointer",40965:"InteroperabilityIFDPointer",258:"BitsPerSample",259:"Compression",262:"PhotometricInterpretation",274:"Orientation",277:"SamplesPerPixel",284:"PlanarConfiguration",530:"YCbCrSubSampling",531:"YCbCrPositioning",282:"XResolution",283:"YResolution",296:"ResolutionUnit",273:"StripOffsets",278:"RowsPerStrip",279:"StripByteCounts",513:"JPEGInterchangeFormat",514:"JPEGInterchangeFormatLength",301:"TransferFunction",318:"WhitePoint",319:"PrimaryChromaticities",529:"YCbCrCoefficients",532:"ReferenceBlackWhite",306:"DateTime",270:"ImageDescription",271:"Make",272:"Model",305:"Software",315:"Artist",33432:"Copyright",36864:"ExifVersion",40960:"FlashpixVersion",40961:"ColorSpace",40962:"PixelXDimension",40963:"PixelYDimension",42240:"Gamma",37121:"ComponentsConfiguration",37122:"CompressedBitsPerPixel",37500:"MakerNote",37510:"UserComment",40964:"RelatedSoundFile",36867:"DateTimeOriginal",36868:"DateTimeDigitized",37520:"SubSecTime",37521:"SubSecTimeOriginal",37522:"SubSecTimeDigitized",33434:"ExposureTime",33437:"FNumber",34850:"ExposureProgram",34852:"SpectralSensitivity",34855:"PhotographicSensitivity",34856:"OECF",34864:"SensitivityType",34865:"StandardOutputSensitivity",34866:"RecommendedExposureIndex",34867:"ISOSpeed",34868:"ISOSpeedLatitudeyyy",34869:"ISOSpeedLatitudezzz",37377:"ShutterSpeedValue",37378:"ApertureValue",37379:"BrightnessValue",37380:"ExposureBias",37381:"MaxApertureValue",37382:"SubjectDistance",37383:"MeteringMode",37384:"LightSource",37385:"Flash",37396:"SubjectArea",37386:"FocalLength",41483:"FlashEnergy",41484:"SpatialFrequencyResponse",41486:"FocalPlaneXResolution",41487:"FocalPlaneYResolution",41488:"FocalPlaneResolutionUnit",41492:"SubjectLocation",41493:"ExposureIndex",41495:"SensingMethod",41728:"FileSource",41729:"SceneType",41730:"CFAPattern",41985:"CustomRendered",41986:"ExposureMode",41987:"WhiteBalance",41988:"DigitalZoomRatio",41989:"FocalLengthIn35mmFilm",41990:"SceneCaptureType",41991:"GainControl",41992:"Contrast",41993:"Saturation",41994:"Sharpness",41995:"DeviceSettingDescription",41996:"SubjectDistanceRange",42016:"ImageUniqueID",42032:"CameraOwnerName",42033:"BodySerialNumber",42034:"LensSpecification",42035:"LensMake",42036:"LensModel",42037:"LensSerialNumber",0:"GPSVersionID",1:"GPSLatitudeRef",2:"GPSLatitude",3:"GPSLongitudeRef",4:"GPSLongitude",5:"GPSAltitudeRef",6:"GPSAltitude",7:"GPSTimeStamp",8:"GPSSatellites",9:"GPSStatus",10:"GPSMeasureMode",11:"GPSDOP",12:"GPSSpeedRef",13:"GPSSpeed",14:"GPSTrackRef",15:"GPSTrack",16:"GPSImgDirectionRef",17:"GPSImgDirection",18:"GPSMapDatum",19:"GPSDestLatitudeRef",20:"GPSDestLatitude",21:"GPSDestLongitudeRef",22:"GPSDestLongitude",23:"GPSDestBearingRef",24:"GPSDestBearing",25:"GPSDestDistanceRef",26:"GPSDestDistance",27:"GPSProcessingMethod",28:"GPSAreaInformation",29:"GPSDateStamp",30:"GPSDifferential",31:"GPSHPositioningError"},e.ExifMap.prototype.stringValues={ExposureProgram:{0:"Undefined",1:"Manual",2:"Normal program",3:"Aperture priority",4:"Shutter priority",5:"Creative program",6:"Action program",7:"Portrait mode",8:"Landscape mode"},MeteringMode:{0:"Unknown",1:"Average",2:"CenterWeightedAverage",3:"Spot",4:"MultiSpot",5:"Pattern",6:"Partial",255:"Other"},LightSource:{0:"Unknown",1:"Daylight",2:"Fluorescent",3:"Tungsten (incandescent light)",4:"Flash",9:"Fine weather",10:"Cloudy weather",11:"Shade",12:"Daylight fluorescent (D 5700 - 7100K)",13:"Day white fluorescent (N 4600 - 5400K)",14:"Cool white fluorescent (W 3900 - 4500K)",15:"White fluorescent (WW 3200 - 3700K)",17:"Standard light A",18:"Standard light B",19:"Standard light C",20:"D55",21:"D65",22:"D75",23:"D50",24:"ISO studio tungsten",255:"Other"},Flash:{0:"Flash did not fire",1:"Flash fired",5:"Strobe return light not detected",7:"Strobe return light detected",9:"Flash fired, compulsory flash mode",13:"Flash fired, compulsory flash mode, return light not detected",15:"Flash fired, compulsory flash mode, return light detected",16:"Flash did not fire, compulsory flash mode",24:"Flash did not fire, auto mode",25:"Flash fired, auto mode",29:"Flash fired, auto mode, return light not detected",31:"Flash fired, auto mode, return light detected",32:"No flash function",65:"Flash fired, red-eye reduction mode",69:"Flash fired, red-eye reduction mode, return light not detected",71:"Flash fired, red-eye reduction mode, return light detected",73:"Flash fired, compulsory flash mode, red-eye reduction mode",77:"Flash fired, compulsory flash mode, red-eye reduction mode, return light not detected",79:"Flash fired, compulsory flash mode, red-eye reduction mode, return light detected",89:"Flash fired, auto mode, red-eye reduction mode",93:"Flash fired, auto mode, return light not detected, red-eye reduction mode",95:"Flash fired, auto mode, return light detected, red-eye reduction mode"},SensingMethod:{1:"Undefined",2:"One-chip color area sensor",3:"Two-chip color area sensor",4:"Three-chip color area sensor",5:"Color sequential area sensor",7:"Trilinear sensor",8:"Color sequential linear sensor"},SceneCaptureType:{0:"Standard",1:"Landscape",2:"Portrait",3:"Night scene"},SceneType:{1:"Directly photographed"},CustomRendered:{0:"Normal process",1:"Custom process"},WhiteBalance:{0:"Auto white balance",1:"Manual white balance"},GainControl:{0:"None",1:"Low gain up",2:"High gain up",3:"Low gain down",4:"High gain down"},Contrast:{0:"Normal",1:"Soft",2:"Hard"},Saturation:{0:"Normal",1:"Low saturation",2:"High saturation"},Sharpness:{0:"Normal",1:"Soft",2:"Hard"},SubjectDistanceRange:{0:"Unknown",1:"Macro",2:"Close view",3:"Distant view"},FileSource:{3:"DSC"},ComponentsConfiguration:{0:"",1:"Y",2:"Cb",3:"Cr",4:"R",5:"G",6:"B"},Orientation:{1:"top-left",2:"top-right",3:"bottom-right",4:"bottom-left",5:"left-top",6:"right-top",7:"right-bottom",8:"left-bottom"}},e.ExifMap.prototype.getText=function(e){var t=this.get(e);switch(e){case"LightSource":case"Flash":case"MeteringMode":case"ExposureProgram":case"SensingMethod":case"SceneCaptureType":case"SceneType":case"CustomRendered":case"WhiteBalance":case"GainControl":case"Contrast":case"Saturation":case"Sharpness":case"SubjectDistanceRange":case"FileSource":case"Orientation":return this.stringValues[e][t];case"ExifVersion":case"FlashpixVersion":return String.fromCharCode(t[0],t[1],t[2],t[3]);case"ComponentsConfiguration":return this.stringValues[e][t[0]]+this.stringValues[e][t[1]]+this.stringValues[e][t[2]]+this.stringValues[e][t[3]];case"GPSVersionID":return t[0]+"."+t[1]+"."+t[2]+"."+t[3]}return t+""},t=e.ExifMap.prototype.tags,i=e.ExifMap.prototype.map;for(a in t)t.hasOwnProperty(a)&&(i[t[a]]=a);e.ExifMap.prototype.getAll=function(){var e,i,a={};for(e in this)this.hasOwnProperty(e)&&(i=t[e],i&&(a[i]=this.getText(i)));return a}}); \ No newline at end of file diff --git a/static/file_upload/js/locale.js b/static/file_upload/js/locale.js new file mode 100644 index 00000000..ea64b0a8 --- /dev/null +++ b/static/file_upload/js/locale.js @@ -0,0 +1,29 @@ +/* + * jQuery File Upload Plugin Localization Example 6.5.1 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2012, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*global window */ + +window.locale = { + "fileupload": { + "errors": { + "maxFileSize": "File is too big", + "minFileSize": "File is too small", + "acceptFileTypes": "Filetype not allowed", + "maxNumberOfFiles": "Max number of files exceeded", + "uploadedBytes": "Uploaded bytes exceed file size", + "emptyResult": "Empty file upload result" + }, + "error": "Error", + "start": "Start", + "cancel": "Cancel", + "destroy": "Delete" + } +}; diff --git a/static/file_upload/js/main.js b/static/file_upload/js/main.js new file mode 100644 index 00000000..1850909a --- /dev/null +++ b/static/file_upload/js/main.js @@ -0,0 +1,77 @@ +/* + * jQuery File Upload Plugin JS Example 8.8.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, regexp: true */ +/*global $, window, blueimp */ + +$(function () { + 'use strict'; + + // Initialize the jQuery File Upload widget: + $('#fileupload').fileupload({ + // Uncomment the following to send cross-domain cookies: + //xhrFields: {withCredentials: true}, + //url: 'server/php/' + }); + + // Enable iframe cross-domain access via redirect option: + $('#fileupload').fileupload( + 'option', + 'redirect', + window.location.href.replace( + /\/[^\/]*$/, + '/cors/result.html?%s' + ) + ); + + if (window.location.hostname === 'blueimp.github.io') { + // Demo settings: + $('#fileupload').fileupload('option', { + url: '//jquery-file-upload.appspot.com/', + // Enable image resizing, except for Android and Opera, + // which actually support image resizing, but fail to + // send Blob objects via XHR requests: + disableImageResize: /Android(?!.*Chrome)|Opera/ + .test(window.navigator.userAgent), + maxFileSize: 5000000, + acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i + }); + // Upload server status check for browsers with CORS support: + if ($.support.cors) { + $.ajax({ + url: '//jquery-file-upload.appspot.com/', + type: 'HEAD' + }).fail(function () { + $('
') + .text('Upload server currently unavailable - ' + + new Date()) + .appendTo('#fileupload'); + }); + } + } else { + // Load existing files: + $('#fileupload').addClass('fileupload-processing'); + $.ajax({ + // Uncomment the following to send cross-domain cookies: + //xhrFields: {withCredentials: true}, + //url: $('#fileupload').fileupload('option', 'url'), + url: '/upload/view/', + dataType: 'json', + context: $('#fileupload')[0] + }).always(function () { + $(this).removeClass('fileupload-processing'); + }).done(function (result) { + $(this).fileupload('option', 'done') + .call(this, null, {result: result}); + }); + } + +}); diff --git a/static/file_upload/js/tmpl.min.js b/static/file_upload/js/tmpl.min.js new file mode 100644 index 00000000..a7cae528 --- /dev/null +++ b/static/file_upload/js/tmpl.min.js @@ -0,0 +1 @@ +!function(e){"use strict";var n=function(e,t){var r=/[^\w\-\.:]/.test(e)?new Function(n.arg+",tmpl","var _e=tmpl.encode"+n.helper+",_s='"+e.replace(n.regexp,n.func)+"';return _s;"):n.cache[e]=n.cache[e]||n(n.load(e));return t?r(t,n):function(e){return r(e,n)}};n.cache={},n.load=function(e){return document.getElementById(e).innerHTML},n.regexp=/([\s'\\])(?!(?:[^{]|\{(?!%))*%\})|(?:\{%(=|#)([\s\S]+?)%\})|(\{%)|(%\})/g,n.func=function(e,n,t,r,c,u){return n?{"\n":"\\n","\r":"\\r"," ":"\\t"," ":" "}[n]||"\\"+n:t?"="===t?"'+_e("+r+")+'":"'+"+r+"+'":c?"';":u?"_s+='":void 0},n.encReg=/[<>&"'\x00]/g,n.encMap={"<":"<",">":">","&":"&",'"':""","'":"'"},n.encode=function(e){return String(e).replace(n.encReg,function(e){return n.encMap[e]||""})},n.arg="o",n.helper=",print=function(s,e){_s+=e&&(s||'')||_e(s);},include=function(s,d){_s+=tmpl(s,d);}","function"==typeof define&&define.amd?define(function(){return n}):e.tmpl=n}(this); \ No newline at end of file diff --git a/static/file_upload/js/vendor/jquery.ui.widget.js b/static/file_upload/js/vendor/jquery.ui.widget.js new file mode 100644 index 00000000..2d370893 --- /dev/null +++ b/static/file_upload/js/vendor/jquery.ui.widget.js @@ -0,0 +1,530 @@ +/* + * jQuery UI Widget 1.10.3+amd + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013 jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + * + * http://api.jqueryui.com/jQuery.widget/ + */ + +(function (factory) { + if (typeof define === "function" && define.amd) { + // Register as an anonymous AMD module: + define(["jquery"], factory); + } else { + // Browser globals: + factory(jQuery); + } +}(function( $, undefined ) { + +var uuid = 0, + slice = Array.prototype.slice, + _cleanData = $.cleanData; +$.cleanData = function( elems ) { + for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { + try { + $( elem ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + } + _cleanData( elems ); +}; + +$.widget = function( name, base, prototype ) { + var fullName, existingConstructor, constructor, basePrototype, + // proxiedPrototype allows the provided prototype to remain unmodified + // so that it can be used as a mixin for multiple widgets (#8876) + proxiedPrototype = {}, + namespace = name.split( "." )[ 0 ]; + + name = name.split( "." )[ 1 ]; + fullName = namespace + "-" + name; + + if ( !prototype ) { + prototype = base; + base = $.Widget; + } + + // create selector for plugin + $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) { + return !!$.data( elem, fullName ); + }; + + $[ namespace ] = $[ namespace ] || {}; + existingConstructor = $[ namespace ][ name ]; + constructor = $[ namespace ][ name ] = function( options, element ) { + // allow instantiation without "new" keyword + if ( !this._createWidget ) { + return new constructor( options, element ); + } + + // allow instantiation without initializing for simple inheritance + // must use "new" keyword (the code above always passes args) + if ( arguments.length ) { + this._createWidget( options, element ); + } + }; + // extend with the existing constructor to carry over any static properties + $.extend( constructor, existingConstructor, { + version: prototype.version, + // copy the object used to create the prototype in case we need to + // redefine the widget later + _proto: $.extend( {}, prototype ), + // track widgets that inherit from this widget in case this widget is + // redefined after a widget inherits from it + _childConstructors: [] + }); + + basePrototype = new base(); + // we need to make the options hash a property directly on the new instance + // otherwise we'll modify the options hash on the prototype that we're + // inheriting from + basePrototype.options = $.widget.extend( {}, basePrototype.options ); + $.each( prototype, function( prop, value ) { + if ( !$.isFunction( value ) ) { + proxiedPrototype[ prop ] = value; + return; + } + proxiedPrototype[ prop ] = (function() { + var _super = function() { + return base.prototype[ prop ].apply( this, arguments ); + }, + _superApply = function( args ) { + return base.prototype[ prop ].apply( this, args ); + }; + return function() { + var __super = this._super, + __superApply = this._superApply, + returnValue; + + this._super = _super; + this._superApply = _superApply; + + returnValue = value.apply( this, arguments ); + + this._super = __super; + this._superApply = __superApply; + + return returnValue; + }; + })(); + }); + constructor.prototype = $.widget.extend( basePrototype, { + // TODO: remove support for widgetEventPrefix + // always use the name + a colon as the prefix, e.g., draggable:start + // don't prefix for widgets that aren't DOM-based + widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name + }, proxiedPrototype, { + constructor: constructor, + namespace: namespace, + widgetName: name, + widgetFullName: fullName + }); + + // If this widget is being redefined then we need to find all widgets that + // are inheriting from it and redefine all of them so that they inherit from + // the new version of this widget. We're essentially trying to replace one + // level in the prototype chain. + if ( existingConstructor ) { + $.each( existingConstructor._childConstructors, function( i, child ) { + var childPrototype = child.prototype; + + // redefine the child widget using the same prototype that was + // originally used, but inherit from the new version of the base + $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto ); + }); + // remove the list of existing child constructors from the old constructor + // so the old child constructors can be garbage collected + delete existingConstructor._childConstructors; + } else { + base._childConstructors.push( constructor ); + } + + $.widget.bridge( name, constructor ); +}; + +$.widget.extend = function( target ) { + var input = slice.call( arguments, 1 ), + inputIndex = 0, + inputLength = input.length, + key, + value; + for ( ; inputIndex < inputLength; inputIndex++ ) { + for ( key in input[ inputIndex ] ) { + value = input[ inputIndex ][ key ]; + if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) { + // Clone objects + if ( $.isPlainObject( value ) ) { + target[ key ] = $.isPlainObject( target[ key ] ) ? + $.widget.extend( {}, target[ key ], value ) : + // Don't extend strings, arrays, etc. with objects + $.widget.extend( {}, value ); + // Copy everything else by reference + } else { + target[ key ] = value; + } + } + } + } + return target; +}; + +$.widget.bridge = function( name, object ) { + var fullName = object.prototype.widgetFullName || name; + $.fn[ name ] = function( options ) { + var isMethodCall = typeof options === "string", + args = slice.call( arguments, 1 ), + returnValue = this; + + // allow multiple hashes to be passed on init + options = !isMethodCall && args.length ? + $.widget.extend.apply( null, [ options ].concat(args) ) : + options; + + if ( isMethodCall ) { + this.each(function() { + var methodValue, + instance = $.data( this, fullName ); + if ( !instance ) { + return $.error( "cannot call methods on " + name + " prior to initialization; " + + "attempted to call method '" + options + "'" ); + } + if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) { + return $.error( "no such method '" + options + "' for " + name + " widget instance" ); + } + methodValue = instance[ options ].apply( instance, args ); + if ( methodValue !== instance && methodValue !== undefined ) { + returnValue = methodValue && methodValue.jquery ? + returnValue.pushStack( methodValue.get() ) : + methodValue; + return false; + } + }); + } else { + this.each(function() { + var instance = $.data( this, fullName ); + if ( instance ) { + instance.option( options || {} )._init(); + } else { + $.data( this, fullName, new object( options, this ) ); + } + }); + } + + return returnValue; + }; +}; + +$.Widget = function( /* options, element */ ) {}; +$.Widget._childConstructors = []; + +$.Widget.prototype = { + widgetName: "widget", + widgetEventPrefix: "", + defaultElement: "
", + options: { + disabled: false, + + // callbacks + create: null + }, + _createWidget: function( options, element ) { + element = $( element || this.defaultElement || this )[ 0 ]; + this.element = $( element ); + this.uuid = uuid++; + this.eventNamespace = "." + this.widgetName + this.uuid; + this.options = $.widget.extend( {}, + this.options, + this._getCreateOptions(), + options ); + + this.bindings = $(); + this.hoverable = $(); + this.focusable = $(); + + if ( element !== this ) { + $.data( element, this.widgetFullName, this ); + this._on( true, this.element, { + remove: function( event ) { + if ( event.target === element ) { + this.destroy(); + } + } + }); + this.document = $( element.style ? + // element within the document + element.ownerDocument : + // element is window or document + element.document || element ); + this.window = $( this.document[0].defaultView || this.document[0].parentWindow ); + } + + this._create(); + this._trigger( "create", null, this._getCreateEventData() ); + this._init(); + }, + _getCreateOptions: $.noop, + _getCreateEventData: $.noop, + _create: $.noop, + _init: $.noop, + + destroy: function() { + this._destroy(); + // we can probably remove the unbind calls in 2.0 + // all event bindings should go through this._on() + this.element + .unbind( this.eventNamespace ) + // 1.9 BC for #7810 + // TODO remove dual storage + .removeData( this.widgetName ) + .removeData( this.widgetFullName ) + // support: jquery <1.6.3 + // http://bugs.jquery.com/ticket/9413 + .removeData( $.camelCase( this.widgetFullName ) ); + this.widget() + .unbind( this.eventNamespace ) + .removeAttr( "aria-disabled" ) + .removeClass( + this.widgetFullName + "-disabled " + + "ui-state-disabled" ); + + // clean up events and states + this.bindings.unbind( this.eventNamespace ); + this.hoverable.removeClass( "ui-state-hover" ); + this.focusable.removeClass( "ui-state-focus" ); + }, + _destroy: $.noop, + + widget: function() { + return this.element; + }, + + option: function( key, value ) { + var options = key, + parts, + curOption, + i; + + if ( arguments.length === 0 ) { + // don't return a reference to the internal hash + return $.widget.extend( {}, this.options ); + } + + if ( typeof key === "string" ) { + // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } } + options = {}; + parts = key.split( "." ); + key = parts.shift(); + if ( parts.length ) { + curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] ); + for ( i = 0; i < parts.length - 1; i++ ) { + curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {}; + curOption = curOption[ parts[ i ] ]; + } + key = parts.pop(); + if ( value === undefined ) { + return curOption[ key ] === undefined ? null : curOption[ key ]; + } + curOption[ key ] = value; + } else { + if ( value === undefined ) { + return this.options[ key ] === undefined ? null : this.options[ key ]; + } + options[ key ] = value; + } + } + + this._setOptions( options ); + + return this; + }, + _setOptions: function( options ) { + var key; + + for ( key in options ) { + this._setOption( key, options[ key ] ); + } + + return this; + }, + _setOption: function( key, value ) { + this.options[ key ] = value; + + if ( key === "disabled" ) { + this.widget() + .toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value ) + .attr( "aria-disabled", value ); + this.hoverable.removeClass( "ui-state-hover" ); + this.focusable.removeClass( "ui-state-focus" ); + } + + return this; + }, + + enable: function() { + return this._setOption( "disabled", false ); + }, + disable: function() { + return this._setOption( "disabled", true ); + }, + + _on: function( suppressDisabledCheck, element, handlers ) { + var delegateElement, + instance = this; + + // no suppressDisabledCheck flag, shuffle arguments + if ( typeof suppressDisabledCheck !== "boolean" ) { + handlers = element; + element = suppressDisabledCheck; + suppressDisabledCheck = false; + } + + // no element argument, shuffle and use this.element + if ( !handlers ) { + handlers = element; + element = this.element; + delegateElement = this.widget(); + } else { + // accept selectors, DOM elements + element = delegateElement = $( element ); + this.bindings = this.bindings.add( element ); + } + + $.each( handlers, function( event, handler ) { + function handlerProxy() { + // allow widgets to customize the disabled handling + // - disabled as an array instead of boolean + // - disabled class as method for disabling individual parts + if ( !suppressDisabledCheck && + ( instance.options.disabled === true || + $( this ).hasClass( "ui-state-disabled" ) ) ) { + return; + } + return ( typeof handler === "string" ? instance[ handler ] : handler ) + .apply( instance, arguments ); + } + + // copy the guid so direct unbinding works + if ( typeof handler !== "string" ) { + handlerProxy.guid = handler.guid = + handler.guid || handlerProxy.guid || $.guid++; + } + + var match = event.match( /^(\w+)\s*(.*)$/ ), + eventName = match[1] + instance.eventNamespace, + selector = match[2]; + if ( selector ) { + delegateElement.delegate( selector, eventName, handlerProxy ); + } else { + element.bind( eventName, handlerProxy ); + } + }); + }, + + _off: function( element, eventName ) { + eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace; + element.unbind( eventName ).undelegate( eventName ); + }, + + _delay: function( handler, delay ) { + function handlerProxy() { + return ( typeof handler === "string" ? instance[ handler ] : handler ) + .apply( instance, arguments ); + } + var instance = this; + return setTimeout( handlerProxy, delay || 0 ); + }, + + _hoverable: function( element ) { + this.hoverable = this.hoverable.add( element ); + this._on( element, { + mouseenter: function( event ) { + $( event.currentTarget ).addClass( "ui-state-hover" ); + }, + mouseleave: function( event ) { + $( event.currentTarget ).removeClass( "ui-state-hover" ); + } + }); + }, + + _focusable: function( element ) { + this.focusable = this.focusable.add( element ); + this._on( element, { + focusin: function( event ) { + $( event.currentTarget ).addClass( "ui-state-focus" ); + }, + focusout: function( event ) { + $( event.currentTarget ).removeClass( "ui-state-focus" ); + } + }); + }, + + _trigger: function( type, event, data ) { + var prop, orig, + callback = this.options[ type ]; + + data = data || {}; + event = $.Event( event ); + event.type = ( type === this.widgetEventPrefix ? + type : + this.widgetEventPrefix + type ).toLowerCase(); + // the original event may come from any element + // so we need to reset the target on the new event + event.target = this.element[ 0 ]; + + // copy original event properties over to the new event + orig = event.originalEvent; + if ( orig ) { + for ( prop in orig ) { + if ( !( prop in event ) ) { + event[ prop ] = orig[ prop ]; + } + } + } + + this.element.trigger( event, data ); + return !( $.isFunction( callback ) && + callback.apply( this.element[0], [ event ].concat( data ) ) === false || + event.isDefaultPrevented() ); + } +}; + +$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) { + $.Widget.prototype[ "_" + method ] = function( element, options, callback ) { + if ( typeof options === "string" ) { + options = { effect: options }; + } + var hasOptions, + effectName = !options ? + method : + options === true || typeof options === "number" ? + defaultEffect : + options.effect || defaultEffect; + options = options || {}; + if ( typeof options === "number" ) { + options = { duration: options }; + } + hasOptions = !$.isEmptyObject( options ); + options.complete = callback; + if ( options.delay ) { + element.delay( options.delay ); + } + if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) { + element[ method ]( options ); + } else if ( effectName !== method && element[ effectName ] ) { + element[ effectName ]( options.duration, options.easing, callback ); + } else { + element.queue(function( next ) { + $( this )[ method ](); + if ( callback ) { + callback.call( element[ 0 ] ); + } + next(); + }); + } + }; +}); + +})); diff --git a/templates/client/base_catalog.html b/templates/client/base_catalog.html index 42d7fcaa..47a3ad79 100644 --- a/templates/client/base_catalog.html +++ b/templates/client/base_catalog.html @@ -1,4 +1,4 @@ -{% extends 'blank.html' %} +{% extends 'client/blank.html' %} {% load static %} {% load i18n %} diff --git a/templates/client/fileupload/fileupload/picture_angular_form.html b/templates/client/fileupload/fileupload/picture_angular_form.html new file mode 100644 index 00000000..a5ac9c09 --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_angular_form.html @@ -0,0 +1,207 @@ + + + + + + + +jQuery File Upload Demo - AngularJS version + + + + + + + + + + + + + + + + +
+

Django jQuery File Upload Demo

+

AngularJS version

+ +
+
+

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for AngularJS.
+ Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

+
+
+ +
{% csrf_token %} + + + +
+
+ + + + Add files... + + + + + +
+
+ +
+ +
+ +
 
+
+
+ {% verbatim %} + + + + + + + + +
+
+ +
+
+
+

+ + {{file.name}} + {{file.name}} + + {{file.name}} +

+
Error {{file.error}}
+
+

{{file.size | formatFileSize}}

+
+
+ + + +
+ {% endverbatim %} +
+
+
+
+

Demo Notes

+
+
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/client/fileupload/fileupload/picture_basic_form.html b/templates/client/fileupload/fileupload/picture_basic_form.html new file mode 100644 index 00000000..6bd17a40 --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_basic_form.html @@ -0,0 +1,130 @@ + + + + + + +Django jQuery File Upload Demo - Basic version + + + + + + + + + + + +
+

Django jQuery File Upload Demo

+

Basic version

+ +
+
+

File Upload widget with multiple file selection, drag&drop support and progress bar for jQuery.
+ Supports cross-domain, chunked and resumable file uploads.

+
+
+ + + + Select files... + + + +
+
+ +
+
+
+ +
+
+
+
+

Demo Notes

+
+
+ +
+
+
+ + + + + + + + + + + + + diff --git a/templates/client/fileupload/fileupload/picture_basicplus_form.html b/templates/client/fileupload/fileupload/picture_basicplus_form.html new file mode 100644 index 00000000..eb1cc1c5 --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_basicplus_form.html @@ -0,0 +1,221 @@ + + + + + + +jQuery File Upload Demo - Basic Plus version + + + + + + + + + + + +
+

Django jQuery File Upload Demo

+

Basic Plus version

+ +
+
+

File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery.
+ Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

+
+
+ + + + Add files... + + + +
+
+ +
+
+
+ +
+
+
+
+

Demo Notes

+
+
+
    +
  • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
  • +
  • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
  • +
  • You can drag & drop files from your desktop on this webpage (see Browser support).
  • +
  • Please refer to the project website and documentation for more information.
  • +
  • Built with Twitter's Bootstrap CSS framework and Icons from Glyphicons.
  • +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/client/fileupload/fileupload/picture_form.html b/templates/client/fileupload/fileupload/picture_form.html new file mode 100644 index 00000000..a3cb5767 --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_form.html @@ -0,0 +1,102 @@ +{% extends "client/fileupload/upload_base.html" %} +{% load upload_tags %} +{% load staticfiles %} + +{% block content %} +
+ + +
{% csrf_token %} + + + +
+
+ + + + Add files... + + + + + + + + +
+ +
+ +
+
+
+ +
 
+
+
+ + +
+
+ +
+ + +{% upload_js %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{% endblock %} \ No newline at end of file diff --git a/templates/client/fileupload/fileupload/picture_jquery_form.html b/templates/client/fileupload/fileupload/picture_jquery_form.html new file mode 100644 index 00000000..cf0ed04c --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_jquery_form.html @@ -0,0 +1,255 @@ + + + + + + + +Django jQuery File Upload Demo - jQuery UI version + + + + + + + + + + + + + + + + + +

Django jQuery File Upload Demo

+

jQuery UI version

+
+ + +
+ +
+

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery UI.
+ Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

+
+ +
{% csrf_token %} + + + +
+
+ + + Add files... + + + + + + + + +
+ + +
+ +
+
+
+

Demo Notes

+
    +
  • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
  • +
  • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
  • +
  • Uploaded files will be deleted automatically after 5 minutes (demo setting).
  • +
  • You can drag & drop files from your desktop on this webpage (see Browser support).
  • +
  • Please refer to the project website and documentation for more information.
  • +
  • Built with jQuery UI.
  • +
+ + +{% verbatim %} + + + + +{% endverbatim %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/client/fileupload/upload_base.html b/templates/client/fileupload/upload_base.html new file mode 100644 index 00000000..1700c17b --- /dev/null +++ b/templates/client/fileupload/upload_base.html @@ -0,0 +1,52 @@ + +{% load staticfiles %} + + + + + + Django Jquery file upload demo + + + + + + + + + + + + + + + + + + +{% block content %} +

No content set

+{% endblock %} + + + diff --git a/wizard/urls.py b/wizard/urls.py index 188c3901..d04ce133 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,8 +1,9 @@ -from django.conf.urls import patterns +from django.conf.urls import patterns, url, include from wizard.forms import ExpoForm1, ExpoForm2 from wizard.views import ExpoWizard urlpatterns = patterns('', - (r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) + url(r'^add-photo/', include('fileupload.urls')), + url(r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) ) \ No newline at end of file From b5e79649e5f55185b248241e0426efa059c6567d Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Fri, 28 Aug 2015 15:19:40 +0300 Subject: [PATCH 03/16] file upload wizard step 3 and changes from remote master to local develop --- fileupload/__init__.py | 0 fileupload/admin.py | 4 - fileupload/models.py | 29 - fileupload/response.py | 38 - fileupload/serialize.py | 38 - fileupload/templatetags/__init__.py | 0 fileupload/templatetags/upload_tags.py | 82 - fileupload/tests.py | 16 - fileupload/urls.py | 17 - fileupload/views.py | 62 - meta/models.py | 65 +- proj/settings.py | 44 +- .../file_upload/css/blueimp-gallery.min.css | 1 - static/file_upload/css/demo-ie8.css | 21 - static/file_upload/css/demo.css | 67 - .../css/jquery.fileupload-ui-noscript.css | 27 - .../file_upload/css/jquery.fileupload-ui.css | 68 - static/file_upload/css/style.css | 19 - static/file_upload/img/loading.gif | Bin 3897 -> 0 bytes static/file_upload/img/progressbar.gif | Bin 3323 -> 0 bytes static/file_upload/js/app.js | 106 -- static/file_upload/js/bootstrap.min.js | 6 - static/file_upload/js/canvas-to-blob.min.js | 1 - .../js/cors/jquery.postmessage-transport.js | 118 -- .../js/cors/jquery.xdr-transport.js | 87 -- static/file_upload/js/csrf.js | 22 - .../js/jquery.blueimp-gallery.min.js | 1 - static/file_upload/js/jquery.cookie.js | 90 -- .../js/jquery.fileupload-angular.js | 402 ----- .../file_upload/js/jquery.fileupload-audio.js | 106 -- .../file_upload/js/jquery.fileupload-image.js | 292 ---- .../js/jquery.fileupload-jquery-ui.js | 138 -- .../js/jquery.fileupload-process.js | 164 -- static/file_upload/js/jquery.fileupload-ui.js | 643 -------- .../js/jquery.fileupload-validate.js | 117 -- .../file_upload/js/jquery.fileupload-video.js | 106 -- static/file_upload/js/jquery.fileupload.js | 1336 ----------------- .../file_upload/js/jquery.iframe-transport.js | 205 --- static/file_upload/js/jquery.ui.widget.js | 282 ---- static/file_upload/js/load-image.min.js | 1 - static/file_upload/js/locale.js | 29 - static/file_upload/js/main.js | 77 - static/file_upload/js/tmpl.min.js | 1 - .../file_upload/js/vendor/jquery.ui.widget.js | 530 ------- .../fileupload/picture_angular_form.html | 207 --- .../fileupload/picture_basic_form.html | 130 -- .../fileupload/picture_basicplus_form.html | 221 --- .../fileupload/fileupload/picture_form.html | 102 -- .../fileupload/picture_jquery_form.html | 255 ---- templates/client/fileupload/upload_base.html | 52 - templates/client/wizard/third_step.html | 115 ++ wizard/forms.py | 1 + wizard/urls.py | 4 +- wizard/views.py | 31 +- 54 files changed, 248 insertions(+), 6328 deletions(-) delete mode 100644 fileupload/__init__.py delete mode 100644 fileupload/admin.py delete mode 100644 fileupload/models.py delete mode 100644 fileupload/response.py delete mode 100644 fileupload/serialize.py delete mode 100644 fileupload/templatetags/__init__.py delete mode 100644 fileupload/templatetags/upload_tags.py delete mode 100644 fileupload/tests.py delete mode 100644 fileupload/urls.py delete mode 100644 fileupload/views.py delete mode 100644 static/file_upload/css/blueimp-gallery.min.css delete mode 100644 static/file_upload/css/demo-ie8.css delete mode 100644 static/file_upload/css/demo.css delete mode 100644 static/file_upload/css/jquery.fileupload-ui-noscript.css delete mode 100644 static/file_upload/css/jquery.fileupload-ui.css delete mode 100644 static/file_upload/css/style.css delete mode 100644 static/file_upload/img/loading.gif delete mode 100644 static/file_upload/img/progressbar.gif delete mode 100644 static/file_upload/js/app.js delete mode 100644 static/file_upload/js/bootstrap.min.js delete mode 100644 static/file_upload/js/canvas-to-blob.min.js delete mode 100644 static/file_upload/js/cors/jquery.postmessage-transport.js delete mode 100644 static/file_upload/js/cors/jquery.xdr-transport.js delete mode 100644 static/file_upload/js/csrf.js delete mode 100644 static/file_upload/js/jquery.blueimp-gallery.min.js delete mode 100644 static/file_upload/js/jquery.cookie.js delete mode 100644 static/file_upload/js/jquery.fileupload-angular.js delete mode 100644 static/file_upload/js/jquery.fileupload-audio.js delete mode 100644 static/file_upload/js/jquery.fileupload-image.js delete mode 100644 static/file_upload/js/jquery.fileupload-jquery-ui.js delete mode 100644 static/file_upload/js/jquery.fileupload-process.js delete mode 100644 static/file_upload/js/jquery.fileupload-ui.js delete mode 100644 static/file_upload/js/jquery.fileupload-validate.js delete mode 100644 static/file_upload/js/jquery.fileupload-video.js delete mode 100644 static/file_upload/js/jquery.fileupload.js delete mode 100644 static/file_upload/js/jquery.iframe-transport.js delete mode 100644 static/file_upload/js/jquery.ui.widget.js delete mode 100644 static/file_upload/js/load-image.min.js delete mode 100644 static/file_upload/js/locale.js delete mode 100644 static/file_upload/js/main.js delete mode 100644 static/file_upload/js/tmpl.min.js delete mode 100644 static/file_upload/js/vendor/jquery.ui.widget.js delete mode 100644 templates/client/fileupload/fileupload/picture_angular_form.html delete mode 100644 templates/client/fileupload/fileupload/picture_basic_form.html delete mode 100644 templates/client/fileupload/fileupload/picture_basicplus_form.html delete mode 100644 templates/client/fileupload/fileupload/picture_form.html delete mode 100644 templates/client/fileupload/fileupload/picture_jquery_form.html delete mode 100644 templates/client/fileupload/upload_base.html create mode 100644 templates/client/wizard/third_step.html diff --git a/fileupload/__init__.py b/fileupload/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/fileupload/admin.py b/fileupload/admin.py deleted file mode 100644 index faa5cdc2..00000000 --- a/fileupload/admin.py +++ /dev/null @@ -1,4 +0,0 @@ -from fileupload.models import Picture -from django.contrib import admin - -admin.site.register(Picture) \ No newline at end of file diff --git a/fileupload/models.py b/fileupload/models.py deleted file mode 100644 index 1150bf0d..00000000 --- a/fileupload/models.py +++ /dev/null @@ -1,29 +0,0 @@ -# encoding: utf-8 -from django.db import models - - -class Picture(models.Model): - """This is a small demo using just two fields. The slug field is really not - necessary, but makes the code simpler. ImageField depends on PIL or - pillow (where Pillow is easily installable in a virtualenv. If you have - problems installing pillow, use a more generic FileField instead. - - """ - file = models.ImageField(upload_to="wizard_pictures") - slug = models.SlugField(max_length=50, blank=True) - - def __unicode__(self): - return self.file.name - - @models.permalink - def get_absolute_url(self): - return ('upload-new', ) - - def save(self, *args, **kwargs): - self.slug = self.file.name - super(Picture, self).save(*args, **kwargs) - - def delete(self, *args, **kwargs): - """delete -- Remove to leave file.""" - self.file.delete(False) - super(Picture, self).delete(*args, **kwargs) diff --git a/fileupload/response.py b/fileupload/response.py deleted file mode 100644 index 334eb29e..00000000 --- a/fileupload/response.py +++ /dev/null @@ -1,38 +0,0 @@ -# encoding: utf-8 -from django.http import HttpResponse -import json - -MIMEANY = '*/*' -MIMEJSON = 'application/json' -MIMETEXT = 'text/plain' - - -def response_mimetype(request): - """response_mimetype -- Return a proper response mimetype, accordingly to - what the client accepts, as available in the `HTTP_ACCEPT` header. - - request -- a HttpRequest instance. - - """ - can_json = MIMEJSON in request.META['HTTP_ACCEPT'] - can_json |= MIMEANY in request.META['HTTP_ACCEPT'] - return MIMEJSON if can_json else MIMETEXT - - -class JSONResponse(HttpResponse): - """JSONResponse -- Extends HTTPResponse to handle JSON format response. - - This response can be used in any view that should return a json stream of - data. - - Usage: - - def a_iew(request): - content = {'key': 'value'} - return JSONResponse(content, mimetype=response_mimetype(request)) - - """ - def __init__(self, obj='', json_opts=None, mimetype=MIMEJSON, *args, **kwargs): - json_opts = json_opts if isinstance(json_opts, dict) else {} - content = json.dumps(obj, **json_opts) - super(JSONResponse, self).__init__(content, mimetype, *args, **kwargs) diff --git a/fileupload/serialize.py b/fileupload/serialize.py deleted file mode 100644 index 4494e79f..00000000 --- a/fileupload/serialize.py +++ /dev/null @@ -1,38 +0,0 @@ -# encoding: utf-8 -import mimetypes -import re -from django.core.urlresolvers import reverse - - -def order_name(name): - """order_name -- Limit a text to 20 chars length, if necessary strips the - middle of the text and substitute it for an ellipsis. - - name -- text to be limited. - - """ - name = re.sub(r'^.*/', '', name) - if len(name) <= 20: - return name - return name[:10] + "..." + name[-7:] - - -def serialize(instance, file_attr='file'): - """serialize -- Serialize a Picture instance into a dict. - - instance -- Picture instance - file_attr -- attribute name that contains the FileField or ImageField - - """ - obj = getattr(instance, file_attr) - return { - 'url': obj.url, - 'name': order_name(obj.name), - 'type': mimetypes.guess_type(obj.path)[0] or 'image/png', - 'thumbnailUrl': obj.url, - 'size': obj.size, - 'deleteUrl': reverse('upload-delete', args=[instance.pk]), - 'deleteType': 'DELETE', - } - - diff --git a/fileupload/templatetags/__init__.py b/fileupload/templatetags/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/fileupload/templatetags/upload_tags.py b/fileupload/templatetags/upload_tags.py deleted file mode 100644 index d492e0ba..00000000 --- a/fileupload/templatetags/upload_tags.py +++ /dev/null @@ -1,82 +0,0 @@ -from django import template - -register = template.Library() - -@register.simple_tag -def upload_js(): - return """ - - - - -""" - - - - - - diff --git a/fileupload/tests.py b/fileupload/tests.py deleted file mode 100644 index 501deb77..00000000 --- a/fileupload/tests.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -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/fileupload/urls.py b/fileupload/urls.py deleted file mode 100644 index 27dbdd1e..00000000 --- a/fileupload/urls.py +++ /dev/null @@ -1,17 +0,0 @@ -# encoding: utf-8 -from django.conf.urls import patterns, url -from fileupload.views import ( - BasicVersionCreateView, BasicPlusVersionCreateView, - jQueryVersionCreateView, AngularVersionCreateView, - PictureCreateView, PictureDeleteView, PictureListView, - ) - -urlpatterns = patterns('', - # url(r'^basic/$', BasicVersionCreateView.as_view(), name='upload-basic'), - # url(r'^basic/plus/$', BasicPlusVersionCreateView.as_view(), name='upload-basic-plus'), - url(r'^new/$', PictureCreateView.as_view(), name='upload-new'), - # url(r'^angular/$', AngularVersionCreateView.as_view(), name='upload-angular'), - # url(r'^jquery-ui/$', jQueryVersionCreateView.as_view(), name='upload-jquery'), - url(r'^delete/(?P\d+)$', PictureDeleteView.as_view(), name='upload-delete'), - url(r'^view/$', PictureListView.as_view(), name='upload-view'), -) diff --git a/fileupload/views.py b/fileupload/views.py deleted file mode 100644 index 360c1933..00000000 --- a/fileupload/views.py +++ /dev/null @@ -1,62 +0,0 @@ -# encoding: utf-8 -import json - -from django.http import HttpResponse -from django.views.generic import CreateView, DeleteView, ListView -from .models import Picture -from .response import JSONResponse, response_mimetype -from .serialize import serialize - - -class PictureCreateView(CreateView): - model = Picture - fields = "__all__" - template_name = 'client/fileupload/fileupload/picture_form.html' - - def form_valid(self, form): - self.object = form.save() - files = [serialize(self.object)] - data = {'files': files} - response = JSONResponse(data, mimetype=response_mimetype(self.request)) - response['Content-Disposition'] = 'inline; filename=files.json' - return response - - def form_invalid(self, form): - data = json.dumps(form.errors) - return HttpResponse(content=data, status=400, content_type='application/json') - -class BasicVersionCreateView(PictureCreateView): - template_name = 'client/fileupload/fileupload/picture_basic_form.html' - - -class BasicPlusVersionCreateView(PictureCreateView): - template_name = 'client/fileupload/fileupload/picture_basicplus_form.html' - -class AngularVersionCreateView(PictureCreateView): - template_name = 'client/fileupload/fileupload/picture_angular_form.html' - - -class jQueryVersionCreateView(PictureCreateView): - template_name = 'client/fileupload/fileupload/picture_jquery_form.html' - - -class PictureDeleteView(DeleteView): - model = Picture - - def delete(self, request, *args, **kwargs): - self.object = self.get_object() - self.object.delete() - response = JSONResponse(True, mimetype=response_mimetype(request)) - response['Content-Disposition'] = 'inline; filename=files.json' - return response - - -class PictureListView(ListView): - model = Picture - - def render_to_response(self, context, **response_kwargs): - files = [ serialize(p) for p in self.get_queryset() ] - data = {'files': files} - response = JSONResponse(data, mimetype=response_mimetype(self.request)) - response['Content-Disposition'] = 'inline; filename=files.json' - return response diff --git a/meta/models.py b/meta/models.py index ede47701..79d02800 100644 --- a/meta/models.py +++ b/meta/models.py @@ -113,4 +113,67 @@ class MetaSetting(TranslatableModel): return [] -post_save.connect(post_save_handler, sender=MetaSetting) \ No newline at end of file +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',None) + 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) + + qs = SeoText.objects.language('all') + 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) + + + +class SeoText(TranslatableModel): + + url = models.CharField(max_length=50, unique=True) + + translations = TranslatedFields( + title=models.CharField(max_length=255), + body=models.TextField() + ) + + objects = SeoTextManager() + + def get_absolute_url(self): + return reverse_lazy('seo_all') + + 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 + + def __unicode__(self): + return self.url \ No newline at end of file diff --git a/proj/settings.py b/proj/settings.py index fff456c2..4a8d8883 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -224,6 +224,9 @@ SOCIAL_AUTH_USER_MODEL = 'accounts.User' SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True #SOCIAL_AUTH_STORAGE = 'social.apps.django_app.me.models.DjangoStorage' +SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True + + SOCIAL_AUTH_PIPELINE = ( 'social.pipeline.social_auth.social_details', 'social.pipeline.social_auth.social_uid', @@ -231,36 +234,53 @@ SOCIAL_AUTH_PIPELINE = ( 'social.pipeline.social_auth.auth_allowed', 'social.pipeline.social_auth.social_user', 'social.pipeline.user.get_username', + 'functions.pipeline.require_email', + #'social.pipeline.mail.mail_validation', 'functions.pipeline.create_user', #'social.pipeline.user.create_user', + 'social.pipeline.social_auth.associate_by_email', 'social.pipeline.social_auth.associate_user', 'social.pipeline.social_auth.load_extra_data', 'social.pipeline.user.user_details' ) +REQUIRES_EMAIL_VALIDATION = True +SOCIAL_AUTH_EMAIL_VALIDATION_FUNCTION = 'functions.pipeline.SendVerificationEmail' +SOCIAL_AUTH_EMAIL_VALIDATION_URL = '/email_verify_sent/' + + SOCIAL_AUTH_VK_OAUTH2_KEY = '3393841' SOCIAL_AUTH_VK_OAUTH2_SECRET = '2P19EBUEpLZifaabbREv' +SOCIAL_AUTH_VK_OAUTH2_SCOPE =['email'] +SOCIAL_AUTH_VK_OAUTH2_PROFILE_EXTRA_PARAMS = { + 'fields': 'email' +} SOCIAL_AUTH_FACEBOOK_KEY = '133775720059470' SOCIAL_AUTH_FACEBOOK_SECRET = '434edf89c24a290497646a739df656c6' +SOCIAL_AUTH_FACEBOOK_SCOPE = ['email', 'publish_actions'] SOCIAL_AUTH_TWITTER_KEY = 'S6NX33FazTcWuqnXQhlOdg' SOCIAL_AUTH_TWITTER_SECRET = 'MxUGfySQmLI5kvqSoAtWsGje2eAHQL7Jo8mXuIZ4D0' +SOCIAL_AUTH_TWITTER_SCOPE = ['email'] SOCIAL_AUTH_GOOGLE_OAUTH_KEY = '1044044901114.apps.googleusercontent.com' SOCIAL_AUTH_GOOGLE_OAUTH_SECRET = 'j_McErlPPof88eNrmOXI-ZXI' +SOCIAL_AUTH_GOOGLE_OAUTH_SCOPE = ['email'] SOCIAL_AUTH_MAILRU_OAUTH2_KEY = '697945' SOCIAL_AUTH_MAILRU_OAUTH2_SECRET = '343581b9e31961b334532cc1880066e8' +SOCIAL_AUTH_MAILRU_OAUTH2_SCOPE = ['email'] SOCIAL_AUTH_ODNOKLASSNIKI_OAUTH2_KEY = 'CBAQDCKIABABABABA' SOCIAL_AUTH_ODNOKLASSNIKI_OAUTH2_SECRET = '814CDDCD3E2D2F278EF1591B' SOCIAL_AUTH_ODNOKLASSNIKI_OAUTH2_PUBLIC_NAME = '128007936' +SOCIAL_AUTH_ODNOKLASSNIKI_OAUTH2_PUBLIC_SCOPE = ['email'] SOCIAL_AUTH_LINKEDIN_KEY = 'jt9xwquj1fkd' SOCIAL_AUTH_LINKEDIN_SECRET = 'GvM2xQCNADaBfiMy' - +SOCIAL_AUTH_LINKEDIN_SCOPE = ['email'] INSTALLED_APPS = ( @@ -316,7 +336,6 @@ INSTALLED_APPS = ( 'password_reset', # reset password 'django_crontab', # crons 'social.apps.django_app.default', # social auth, - 'fileupload', ) @@ -459,4 +478,23 @@ if DEBUG: # 'INTERCEPT_REDIRECTS': False, #} -""" \ No newline at end of file +""" + +LOGGING = { + 'version': 1, + 'disable_existing_loggers': True, + 'handlers': { + 'file': { + 'level': 'DEBUG', + 'class': 'logging.FileHandler', + 'filename': '/var/log/django_debug.log', + }, + }, + 'loggers': { + 'django.request': { + 'handlers': ['file'], + 'level': 'DEBUG', + 'propagate': True, + }, + }, +} \ No newline at end of file diff --git a/static/file_upload/css/blueimp-gallery.min.css b/static/file_upload/css/blueimp-gallery.min.css deleted file mode 100644 index 7cfad0c4..00000000 --- a/static/file_upload/css/blueimp-gallery.min.css +++ /dev/null @@ -1 +0,0 @@ -@charset 'UTF-8';.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.slide-content{margin:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery{position:fixed;z-index:9999;overflow:hidden;background:#000;background:rgba(0,0,0,0.9);opacity:0;visibility:hidden;display:none;direction:ltr;-ms-touch-action:none}.blueimp-gallery-carousel{position:relative;z-index:auto;height:432px;max-width:768px;margin:1em auto;box-shadow:0 0 10px #000}.blueimp-gallery-display{display:block;visibility:visible;opacity:1}.blueimp-gallery>.slides{position:relative;height:100%;overflow:hidden}.blueimp-gallery>.slides>.slide{position:relative;float:left;height:100%;text-align:center;-webkit-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-moz-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-ms-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-o-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);transition-timing-function:cubic-bezier(0.645,0.045,0.355,1)}.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-transition:opacity .5s linear;-moz-transition:opacity .5s linear;-ms-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear}.blueimp-gallery>.slides>.slide-loading{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}.blueimp-gallery>.slides>.slide-loading>.slide-content{opacity:0}.blueimp-gallery>.slides>.slide-error{background:url(../img/error.png) center no-repeat}.blueimp-gallery>.slides>.slide-error>.slide-content{display:none}.blueimp-gallery>.prev,.blueimp-gallery>.next{position:absolute;top:50%;left:15px;width:40px;height:40px;margin-top:-23px;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-decoration:none;text-shadow:0 0 2px #000;text-align:center;background:#222;background:rgba(0,0,0,0.5);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;cursor:pointer;display:none}.blueimp-gallery>.next{left:auto;right:15px}.blueimp-gallery>.close,.blueimp-gallery>.title{position:absolute;top:15px;left:15px;margin:0 40px 0 0;font-size:20px;line-height:30px;color:#fff;text-shadow:0 0 2px #000;opacity:.8;display:none}.blueimp-gallery>.close{padding:15px;right:15px;left:auto;margin:-15px;font-size:30px;text-decoration:none;cursor:pointer}.blueimp-gallery>.play-pause{position:absolute;right:15px;bottom:15px;width:15px;height:15px;background:url(../img/play-pause.png) 0 0 no-repeat;cursor:pointer;opacity:.5;display:none}.blueimp-gallery-playing>.play-pause{background-position:-15px 0}.blueimp-gallery-controls>.prev,.blueimp-gallery-controls>.next,.blueimp-gallery-controls>.close,.blueimp-gallery-controls>.title,.blueimp-gallery-controls>.play-pause{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.prev,.blueimp-gallery-left>.prev,.blueimp-gallery-single>.next,.blueimp-gallery-right>.next,.blueimp-gallery-single>.play-pause{display:none}.blueimp-gallery>.slides>.slide>.slide-content,.blueimp-gallery>.prev,.blueimp-gallery>.next,.blueimp-gallery>.close,.blueimp-gallery>.play-pause{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body:last-child .blueimp-gallery>.slides>.slide-error{background-image:url(../img/error.svg)}body:last-child .blueimp-gallery>.play-pause{width:20px;height:20px;background-size:40px 20px;background-image:url(../img/play-pause.svg)}body:last-child .blueimp-gallery-playing>.play-pause{background-position:-20px 0}@media(max-width:767px){.blueimp-gallery-carousel{height:270px;max-width:480px}}*+html .blueimp-gallery>.slides>.slide{min-height:300px}*+html .blueimp-gallery>.slides>.slide>.slide-content{position:relative}.blueimp-gallery>.indicator{position:absolute;top:auto;right:15px;bottom:15px;left:15px;margin:0 40px;padding:0;list-style:none;text-align:center;line-height:10px;display:none}.blueimp-gallery>.indicator>li{display:inline-block;width:9px;height:9px;margin:6px 3px 0 3px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:1px solid transparent;background:#ccc;background:rgba(255,255,255,0.25) center no-repeat;border-radius:5px;box-shadow:0 0 2px #000;opacity:.5;cursor:pointer}.blueimp-gallery>.indicator>.active{background-color:#fff;border-color:#fff;opacity:.8}.blueimp-gallery-controls>.indicator{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.indicator{display:none}.blueimp-gallery>.indicator{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}*+html .blueimp-gallery>.indicator>li{display:inline}.blueimp-gallery>.slides>.slide>.video-content>video,.blueimp-gallery>.slides>.slide>.video-content>img{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.video-content>video,.blueimp-gallery>.slides>.slide>.video-content>img{margin:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery>.slides>.slide>.video-content>a{position:absolute;top:50%;right:0;left:0;margin:-64px auto 0;width:128px;height:128px;background:url(../img/video-play.png) center no-repeat;opacity:.8;cursor:pointer}.blueimp-gallery>.slides>.slide>.video-playing>a,.blueimp-gallery>.slides>.slide>.video-playing>img{display:none}.blueimp-gallery>.slides>.slide>.video-content>video{display:none}.blueimp-gallery>.slides>.slide>.video-playing>video{display:block}.blueimp-gallery>.slides>.slide>.video-loading>a{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}body:last-child .blueimp-gallery>.slides>.slide>.video-content>a{background-image:url(../img/video-play.svg)}*+html .blueimp-gallery>.slides>.slide>.video-content{height:100%}*+html .blueimp-gallery>.slides>.slide>.video-content>a{left:50%;margin-left:-64px} \ No newline at end of file diff --git a/static/file_upload/css/demo-ie8.css b/static/file_upload/css/demo-ie8.css deleted file mode 100644 index 262493d0..00000000 --- a/static/file_upload/css/demo-ie8.css +++ /dev/null @@ -1,21 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Demo CSS Fixes for IE<9 1.0.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.navigation { - list-style: none; - padding: 0; - margin: 1em 0; -} -.navigation li { - display: inline; - margin-right: 10px; -} diff --git a/static/file_upload/css/demo.css b/static/file_upload/css/demo.css deleted file mode 100644 index 841f80d1..00000000 --- a/static/file_upload/css/demo.css +++ /dev/null @@ -1,67 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Demo CSS 1.0.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -body { - max-width: 750px; - margin: 0 auto; - padding: 1em; - font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; - font-size: 1em; - line-height: 1.4em; - background: #222; - color: #fff; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} -a { - color: orange; - text-decoration: none; -} -img { - border: 0; - vertical-align: middle; -} -h1 { - line-height: 1em; -} -blockquote { - padding: 0 0 0 15px; - margin: 0 0 20px; - border-left: 5px solid #eee; -} -table { - width: 100%; - margin: 10px 0; -} - -.fileupload-progress { - margin: 10px 0; -} -.fileupload-progress .progress-extended { - margin-top: 5px; -} -.error { - color: red; -} - -@media (min-width: 481px) { - .navigation { - list-style: none; - padding: 0; - } - .navigation li { - display: inline-block; - } - .navigation li:not(:first-child):before { - content: '| '; - } -} diff --git a/static/file_upload/css/jquery.fileupload-ui-noscript.css b/static/file_upload/css/jquery.fileupload-ui-noscript.css deleted file mode 100644 index c4504855..00000000 --- a/static/file_upload/css/jquery.fileupload-ui-noscript.css +++ /dev/null @@ -1,27 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload UI Plugin NoScript CSS 1.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.fileinput-button input { - position: static; - opacity: 1; - filter: none; - transform: none; - font-size: inherit; - direction: inherit; -} - -.fileinput-button span, -.fileinput-button i, -.fileupload-buttonbar .delete, -.fileupload-buttonbar .toggle { - display: none; -} diff --git a/static/file_upload/css/jquery.fileupload-ui.css b/static/file_upload/css/jquery.fileupload-ui.css deleted file mode 100644 index f81b34c7..00000000 --- a/static/file_upload/css/jquery.fileupload-ui.css +++ /dev/null @@ -1,68 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload UI Plugin CSS 8.8.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.fileinput-button { - position: relative; - overflow: hidden; -} -.fileinput-button input { - position: absolute; - top: 0; - right: 0; - margin: 0; - opacity: 0; - filter: alpha(opacity=0); - transform: translate(-300px, 0) scale(4); - font-size: 23px; - direction: ltr; - cursor: pointer; -} -.fileupload-buttonbar .btn, -.fileupload-buttonbar .toggle { - margin-bottom: 5px; -} -.progress-animated .progress-bar, -.progress-animated .bar { - background: url(../img/progressbar.gif) !important; - filter: none; -} -.fileupload-loading { - float: right; - width: 32px; - height: 32px; - background: url(../img/loading.gif) center no-repeat; - background-size: contain; - display: none; -} -.fileupload-processing .fileupload-loading { - display: block; -} -.files audio, -.files video { - max-width: 300px; -} - -@media (max-width: 767px) { - .fileupload-buttonbar .toggle, - .files .toggle, - .files .btn span { - display: none; - } - .files .name { - width: 80px; - word-wrap: break-word; - } - .files audio, - .files video { - max-width: 80px; - } -} diff --git a/static/file_upload/css/style.css b/static/file_upload/css/style.css deleted file mode 100644 index 6f1a7f2d..00000000 --- a/static/file_upload/css/style.css +++ /dev/null @@ -1,19 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Plugin CSS Example 8.8.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -body { - padding-top: 60px; -} - -.preview img { - max-height:50px; -} \ No newline at end of file diff --git a/static/file_upload/img/loading.gif b/static/file_upload/img/loading.gif deleted file mode 100644 index 90f28cbdbb390b095e0d619cbe8d91208798e58f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3897 zcmZvfcR1T?8^ABwb_x$y{p1+>Yb$`dLr?0DW)y5y-57+?!PEJmyrlv?FQgU)K z^$+m(2RfoVbqYWS0G%+J=-j=drD>|8AS+KxL%o*)0)PM?>H*Mx2iHt~mnWZ=N>W+t zB|S>mk9=ZpYXc!T7UZI&`(-T$A=k$fH%{0DUBGwg!#nk?dE^E3gDApBHVTIQQFjd% z@8i*q&q?bJ^`q%$4G<}clybdVd-s{xsx+KupPg;W4bOvd7w*pJ;3oEg_PFlG;yL8+oShz**1=iDRZ*E(Q<#5R=A*XP5H_Y=1xJoCem%-&eKb6zV0ff z>legqW&{=3KP~Y8@#^3-+sNyevrSganP&X1J3*?KZrnP&@8z-DF>$5H-D+bme&k}k z=b(j;=N4)0R8Q6PZLj2pkrz)`V_M!E?dlE7mCX3opU@wz96Zurx4FmWL37=7TCuG9 z`GkMU?-=3W2u(X1pJ+1-D8$#M3IyxB%pDQB;2(M(eo?G5D~tz~6dTT3ItGfkWI&$< z&#Xo;(n_Kq+TlC@hpWm<{qK@(J8G++We#hbNi^se<6nV2;T4 zNDqriR!3dHvF711Txh1!vT{};LzV^uLH;6l)wR@$;KDJa`VOrZ+ccMJt-r043s&2t^bewdCj@xurE^v)WL95dQ z!~&h-7Yqg)+cJl7{=U2?_+E7^{JVv*AQbVh@R_RBt12dDs-#^ZEg=TA;LKR69HAv*?v1IO*LrVkl0@jm)`Yw>Ei;Cb<`Ge=JHj9g^C7+M?`w@g>lBl#q%UG z`}!%t5@M1z}?nB z*Tj60Y$FR82XGHd41y*mrUDeYh38hddS#Y*SGE@ZP#F{1I^fy8Y9@AY`0m};Z?t1t zvl@XaOzm2oTG^`5GXjVpu-2S*n4*kB%YDv4k&aM?8%y+(ZsV3)1mZz23da;)wH@7&`|Ado=<=+Ih>-Zw;?kA^kOQDkl*L3<;+? z<|M0rPu_-Pn1S;!V&9?Lji{M@0Mr#T9>Bk`lq`z3P)1&h>Ho;*au|vDvsVjp-qT0e z*UUfQ?Gpz$g9n2bA}a7zWNb7tHVzcwml}2{C{dOsk47z6B0pahT~Ju4TqIILBp68& zNmxrkQf(GrV^cF{Yg;>8XC;}Vr=*X4p!6N-twSOZPz$&PLr@%}eIZ zD~Lt1l{LgdQhk+JLo-cX3#q!jvb?Lbps#;m@ZHexhyq{?ko#d0H90e$K08CzSlrS) zWo6dl)B48d)b`HU-u~MD$9uai7`L)G>3*T{10aZCYqqL(n*#FQw0j@zj_M(+#c zyVt!MW{V+4vZ?)+0bac?NfTw2K79`dH+R{6nT57bfL{LIoi7Ag$(vz$+eju9d$7B zJG&Z{dzkyk1G(>p`qfHW#%#yxr>AUYK0KOvygWa*I`naEY4hR2MjvI{YUR`Z@fYi( z@9Pv+(V>39D#Fg`k5 zAvd8jHQhWpvV^33oSVP7D7mS*y)&b|zlvB`kzM|}?rCIuU=S7LEHVa$xY zK7bdtLDWL^SFw^20+{?ObjZr9KUx(0o0SBj_xZyoID`D^`r^?VSAjk}{spA|BzpP` z*n{4_ZGkmTM)r5(MRv|pCYSwXX2mHCy0;?C3wFJlI=Ud1imCcH_f;o6U;m-fmBwF| zxeaFV_F$)h(s28}mNsGy`ZELug@>6%MYAH2>|xIMd-hlX4DyCpx2_fIxR&9HR| zOo=QmRf1OdI|P;~oA(JKyL+Po2Z!q-^EdYxV{T>gIls8gp+tex@r9h|)?()zIoc!` z<-T`fILv04Ax z`;g5e;{OrXwNr!u98>p5O4V$kGW+Q$xy7wyq-@a{rvp{O^`YL+YM=2l%U^u_1752E zp+H?P>LBTO+=z(KcG8T2As`wFiAndgQX_?Fb7*g8g`&_orui5i9PU;=s2FX6FR#co zE~~Dn%@VI68P?So8?|?o7*sXav^B}J^pd-Y`tL^zz~d9Gy3^POy}9|$k4r+sE2(Oq zblxd%Y40fR?Z;>w9%bM7>MRCe0$W>a1Ua)1%pg!3Ef2a&@`nE+@wdq?gKL=1$&mG5 zc=xRumn_dNMN(4+^D|}e-AyHhgXp*ONwPc4Gw0}8JwtWo>9B=>)bspG45{b5-#-%j z#bmSnf0`_jYO*x%*xv*H2=qB?SKiue@ymKb_UgCALL`qak+Q!sG{OTY*|7f zF|)MHlBhu2NPE6kwyB8|f2F;hBma7LM{kKLHEAkujx^eiH``22TTe~S&x|jOJYJkz zURwXOva!82K-vG?eb}>euy=GkG2A=!`dKFQr>UIzv90~@YW71c)Ya_7S_1LJKEn=2 za9pc*k?HqfnAE_>s??ukJY)v<(7$cFuo!w*RiJ0d-5_)cb6+|EH)TS4n7hww64>2( zX`J7xEP2C2?VS3M{VJ)C5ViP4(Z`>SCWHnQ7<3K_6^4f~Mj(aUsSP$sAU+{HDVa|% zjWr{KUyB;EnHVu#ZXuo!TYQ1qV?~J(RTVWMwIb943uEgYoSL4Q{n!XxSX^4BEKja{T3;I9*k1pzv%fm_`3SgoyubBr<2{X$I3cSkh@M@_ zva>k51!i{|%nxvFY7J+Rb3l)ox#Z|V1(l_kR#-t@$lq>-DPeX*yA#-ro8yw)#5xk? z+50S$Vwd${7o-V=V1Vdg4meiIid>Ez$~Vn1NH?g!jTGE3bC@Dm6pR*Gx184p0Mz~i D^>?LD diff --git a/static/file_upload/img/progressbar.gif b/static/file_upload/img/progressbar.gif deleted file mode 100644 index fbcce6bc9abfcc7893e65ef20b3e77ee16ec37b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3323 zcmcK7eNYp38VB%=tbvu|O{=v;j+Z$Bg`>zI2IVD3Ovp-%sA$2LilR;|zMv9BB_t%- zylmcIh`dQLinJh9P{0Ja6I28#3PquysCf3GB1bBEXgfV_qnx8-n07k#kNmNdnVrvm zpZz`0v#~Ih7`{0em<2RA0wa|vr`!U1uI~v zF&O+zyfdOBoHdq{xOf7$)mN>lwcHgLVd-HT}JxYe94Gv(X_H__aHV~b7Ud4Pvk@t?84W?#& z+#WmNc5cUNoapyda#-P`2+n z-sGAbb$_$TW887}6BiJKaV$E-69{23pNeG2=_;8-CM9c*OiHOp|F9Igl_JQHqf)Y3 zhR7s(mQBh5ER~A&6^|p|OQqmd+(8 zZCb1qD*K}>!|B|YVuCsS=V0!N=?-)po(^$x*kptYX9N)B^~VJ^d7-@(M1WK;9&Liw~wO?NN(E}be} z`e0?=)*y}@Xkgx6S$ZS(8d|ifzK_`x?=N$)pWk;s0Ve?`qDX{%L@X0)6guz8Adh+qh(mq90aE=iAZp(dGccGHgmlkOke19p-dfci z@1Ni#x_B;&@l8icy*4roEXN?9&vh-w;n!Fp3;~Dn4#aOVi22tbo-KY@B1*TAgMsta zMh~68EXdvgJe$<9yOgn~E8aiQNo1$l`FUCI52J)nHW8+@|McSTe{t30@NpO^cv#waY+68ew4oT={#AGoA?Je^k$f`&u}bW zOjoRA_$utq5rspZ;5HXZvqE1#D) z5*M}9jPoq=-V*<cQuuK%yr=$XZl2k``40P4ol60hjb({{!c5Rtn3Urk4?uRRFNQuFGPhZnTBMO zu{W&|u4t53w>M}v(wtDAV!oHP(QY&~_X0qupII*-&GksTPf#SZ#4eaOCrG~hUblo4 zya(R){3rfyxiH2%l{iN;xS(G)OWOx8>UV9u+Vm_iN98oT20F}U!8utl4(lm=E)S6) zN~xM^Q?U;_!Ku4seH{bquy+4OfwlV{0C?tW&XteqJmP<|V)6eK9ey(~1Sbd1rgF1{ zd@&*xkriY}MS><}4DI}o3>d2jm74@fNpg-Vf(zPY?8nj=O8o$gp_gzr3~{MEs({T( z5+EcMIErR!`wwLZHp{c_?{mEhe%dlbNH8E^nm+5|owEXTR;S2+hYWR^j zWB!qbQWumI=vg;ZQvO$8W9QeMX~YdqNb^K%y~T6@tCTOlSM-j*$OOSSZX6cRfzPb* zP-Q}8v|6Q&$hAFfGA(f5>_XzuqhFP@h(0x@%#tsExSB}v(zy6^qc>xW*XCVMBPKf` zF>gsuD~+eKuRP{tWLo#OoJ2?fR@_0f5Olf}}Khc$ZhB$$3I7S9&n z^G{G0pQnju2Md}?zmbrthis.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(window.jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(''}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery); \ No newline at end of file diff --git a/static/file_upload/js/canvas-to-blob.min.js b/static/file_upload/js/canvas-to-blob.min.js deleted file mode 100644 index 7ee3553a..00000000 --- a/static/file_upload/js/canvas-to-blob.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(t){"use strict";var e=t.HTMLCanvasElement&&t.HTMLCanvasElement.prototype,n=t.Blob&&function(){try{return Boolean(new Blob)}catch(t){return!1}}(),o=n&&t.Uint8Array&&function(){try{return 100===new Blob([new Uint8Array(100)]).size}catch(t){return!1}}(),r=t.BlobBuilder||t.WebKitBlobBuilder||t.MozBlobBuilder||t.MSBlobBuilder,i=(n||r)&&t.atob&&t.ArrayBuffer&&t.Uint8Array&&function(t){var e,i,a,l,u,B;for(e=t.split(",")[0].indexOf("base64")>=0?atob(t.split(",")[1]):decodeURIComponent(t.split(",")[1]),i=new ArrayBuffer(e.length),a=new Uint8Array(i),l=0;l').prop('href', options.postMessage)[0], - target = loc.protocol + '//' + loc.host, - xhrUpload = options.xhr().upload; - return { - send: function (_, completeCallback) { - counter += 1; - var message = { - id: 'postmessage-transport-' + counter - }, - eventName = 'message.' + message.id; - iframe = $( - '' - ).bind('load', function () { - $.each(names, function (i, name) { - message[name] = options[name]; - }); - message.dataType = message.dataType.replace('postmessage ', ''); - $(window).bind(eventName, function (e) { - e = e.originalEvent; - var data = e.data, - ev; - if (e.origin === target && data.id === message.id) { - if (data.type === 'progress') { - ev = document.createEvent('Event'); - ev.initEvent(data.type, false, true); - $.extend(ev, data); - xhrUpload.dispatchEvent(ev); - } else { - completeCallback( - data.status, - data.statusText, - {postmessage: data.result}, - data.headers - ); - iframe.remove(); - $(window).unbind(eventName); - } - } - }); - iframe[0].contentWindow.postMessage( - message, - target - ); - }).appendTo(document.body); - }, - abort: function () { - if (iframe) { - iframe.remove(); - } - } - }; - } - }); - -})); diff --git a/static/file_upload/js/cors/jquery.xdr-transport.js b/static/file_upload/js/cors/jquery.xdr-transport.js deleted file mode 100644 index d769f452..00000000 --- a/static/file_upload/js/cors/jquery.xdr-transport.js +++ /dev/null @@ -1,87 +0,0 @@ -/* - * jQuery XDomainRequest Transport Plugin 1.1.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - * - * Based on Julian Aubourg's ajaxHooks xdr.js: - * https://github.com/jaubourg/ajaxHooks/ - */ - -/*jslint unparam: true */ -/*global define, window, XDomainRequest */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - if (window.XDomainRequest && !$.support.cors) { - $.ajaxTransport(function (s) { - if (s.crossDomain && s.async) { - if (s.timeout) { - s.xdrTimeout = s.timeout; - delete s.timeout; - } - var xdr; - return { - send: function (headers, completeCallback) { - var addParamChar = /\?/.test(s.url) ? '&' : '?'; - function callback(status, statusText, responses, responseHeaders) { - xdr.onload = xdr.onerror = xdr.ontimeout = $.noop; - xdr = null; - completeCallback(status, statusText, responses, responseHeaders); - } - xdr = new XDomainRequest(); - // XDomainRequest only supports GET and POST: - if (s.type === 'DELETE') { - s.url = s.url + addParamChar + '_method=DELETE'; - s.type = 'POST'; - } else if (s.type === 'PUT') { - s.url = s.url + addParamChar + '_method=PUT'; - s.type = 'POST'; - } else if (s.type === 'PATCH') { - s.url = s.url + addParamChar + '_method=PATCH'; - s.type = 'POST'; - } - xdr.open(s.type, s.url); - xdr.onload = function () { - callback( - 200, - 'OK', - {text: xdr.responseText}, - 'Content-Type: ' + xdr.contentType - ); - }; - xdr.onerror = function () { - callback(404, 'Not Found'); - }; - if (s.xdrTimeout) { - xdr.ontimeout = function () { - callback(0, 'timeout'); - }; - xdr.timeout = s.xdrTimeout; - } - xdr.send((s.hasContent && s.data) || null); - }, - abort: function () { - if (xdr) { - xdr.onerror = $.noop(); - xdr.abort(); - } - } - }; - } - }); - } -})); diff --git a/static/file_upload/js/csrf.js b/static/file_upload/js/csrf.js deleted file mode 100644 index aec99cc7..00000000 --- a/static/file_upload/js/csrf.js +++ /dev/null @@ -1,22 +0,0 @@ -// modify jquery ajax to add csrtoken when doing "local" requests -$('html').ajaxSend(function(event, xhr, settings) { - function getCookie(name) { - var cookieValue = null; - if (document.cookie && document.cookie != '') { - var cookies = document.cookie.split(';'); - for (var i = 0; i < cookies.length; i++) { - var cookie = jQuery.trim(cookies[i]); - // Does this cookie string begin with the name we want? - if (cookie.substring(0, name.length + 1) == (name + '=')) { - cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); - break; - } - } - } - return cookieValue; - } - if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) { - // Only send the token to relative URLs i.e. locally. - xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken')); - } -}); diff --git a/static/file_upload/js/jquery.blueimp-gallery.min.js b/static/file_upload/js/jquery.blueimp-gallery.min.js deleted file mode 100644 index 3aa02545..00000000 --- a/static/file_upload/js/jquery.blueimp-gallery.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(t){"use strict";"function"==typeof define&&define.amd?define(["./blueimp-helper"],t):(window.blueimp=window.blueimp||{},window.blueimp.Gallery=t(window.blueimp.helper||window.jQuery))}(function(t){"use strict";function e(t,i){return t&&t.length&&void 0!==document.body.style.maxHeight?this&&this.options===e.prototype.options?(this.list=t,this.num=t.length,this.initOptions(i),this.initialize(),void 0):new e(t,i):!1}return t.extend(e.prototype,{options:{container:"#blueimp-gallery",slidesContainer:"div",titleElement:"h3",displayClass:"blueimp-gallery-display",controlsClass:"blueimp-gallery-controls",singleClass:"blueimp-gallery-single",leftEdgeClass:"blueimp-gallery-left",rightEdgeClass:"blueimp-gallery-right",playingClass:"blueimp-gallery-playing",slideClass:"slide",slideLoadingClass:"slide-loading",slideErrorClass:"slide-error",slideContentClass:"slide-content",toggleClass:"toggle",prevClass:"prev",nextClass:"next",closeClass:"close",playPauseClass:"play-pause",typeProperty:"type",titleProperty:"title",urlProperty:"href",clearSlides:!0,stretchImages:!1,toggleControlsOnReturn:!0,toggleSlideshowOnSpace:!0,enableKeyboardNavigation:!0,closeOnEscape:!0,closeOnSlideClick:!0,closeOnSwipeUpOrDown:!0,emulateTouchEvents:!0,hidePageScrollbars:!0,disableScroll:!0,carousel:!1,continuous:!0,unloadElements:!0,startSlideshow:!1,slideshowInterval:5e3,index:0,preloadRange:2,transitionSpeed:400,slideshowTransitionSpeed:void 0,event:void 0,onopen:void 0,onslide:void 0,onslideend:void 0,onslidecomplete:void 0,onclose:void 0},carouselOptions:{hidePageScrollbars:!1,toggleControlsOnReturn:!1,toggleSlideshowOnSpace:!1,enableKeyboardNavigation:!1,closeOnEscape:!1,closeOnSlideClick:!1,closeOnSwipeUpOrDown:!1,disableScroll:!1,startSlideshow:!0},support:function(t){var e,i,s,n={touch:void 0!==window.ontouchstart||window.DocumentTouch&&document instanceof DocumentTouch},o={webkitTransition:{end:"webkitTransitionEnd",prefix:"-webkit-"},MozTransition:{end:"transitionend",prefix:"-moz-"},OTransition:{end:"otransitionend",prefix:"-o-"},transition:{end:"transitionend",prefix:""}};for(e in o)if(o.hasOwnProperty(e)&&void 0!==t.style[e]){i=o[e],i.name=e,n.transition=i;break}return document.body.appendChild(t),i&&(e=i.name.slice(0,-9)+"ransform",void 0!==t.style[e]&&(t.style[e]="translateZ(0)",s=window.getComputedStyle(t).getPropertyValue(i.prefix+"transform"),n.transform={prefix:i.prefix,name:e,translate:!0,translateZ:s&&"none"!==s})),void 0!==t.style.backgroundSize&&(t.style.backgroundSize="contain",n.backgroundSize={contain:"contain"===window.getComputedStyle(t).getPropertyValue("background-size")}),document.body.removeChild(t),n}(document.createElement("div")),initialize:function(){return this.initStartIndex(),this.initWidget()===!1?!1:(this.initEventListeners(),this.options.onopen&&this.options.onopen.call(this),this.onslide(this.index),this.ontransitionend(),this.options.startSlideshow&&this.play(),void 0)},slide:function(t,e){window.clearTimeout(this.timeout);var i,s,n,o=this.index;if(o!==t&&1!==this.num){if(e||(e=this.options.transitionSpeed),this.support.transition){for(this.options.continuous||(t=this.circle(t)),i=Math.abs(o-t)/(o-t),this.options.continuous&&(s=i,i=-this.positions[this.circle(t)]/this.slideWidth,i!==s&&(t=-i*this.num+t)),n=Math.abs(o-t)-1;n;)n-=1,this.move(this.circle((t>o?t:o)-n-1),this.slideWidth*i,0);t=this.circle(t),this.move(o,this.slideWidth*i,e),this.move(t,0,e),this.options.continuous&&this.move(this.circle(t-i),-(this.slideWidth*i),0)}else t=this.circle(t),this.animate(o*-this.slideWidth,t*-this.slideWidth,e);this.onslide(t)}},getIndex:function(){return this.index},getNumber:function(){return this.num},prev:function(){(this.options.continuous||this.index)&&this.slide(this.index-1)},next:function(){(this.options.continuous||this.index1&&(this.timeout=this.setTimeout(this.slide,[this.index+1,this.options.slideshowTransitionSpeed],this.interval)),this.container.addClass(this.options.playingClass)},pause:function(){window.clearTimeout(this.timeout),this.interval=null,this.container.removeClass(this.options.playingClass)},add:function(t){var e;for(this.list=this.list.concat(t),this.num=this.list.length,this.num>2&&null===this.options.continuous&&(this.options.continuous=!0,this.container.removeClass(this.options.leftEdgeClass)),this.container.removeClass(this.options.rightEdgeClass).removeClass(this.options.singleClass),e=this.num-t.length;ei?(s.slidesContainer[0].style.left=e+"px",s.ontransitionend(),window.clearInterval(o),void 0):(s.slidesContainer[0].style.left=(e-t)*(Math.floor(100*(l/i))/100)+t+"px",void 0)},4)},preventDefault:function(t){t.preventDefault?t.preventDefault():t.returnValue=!1},onresize:function(){this.initSlides(!0)},onmousedown:function(t){t.which&&1===t.which&&(t.preventDefault(),(t.originalEvent||t).touches=[{pageX:t.pageX,pageY:t.pageY}],this.ontouchstart(t))},onmousemove:function(t){this.touchStart&&((t.originalEvent||t).touches=[{pageX:t.pageX,pageY:t.pageY}],this.ontouchmove(t))},onmouseup:function(t){this.touchStart&&(this.ontouchend(t),delete this.touchStart)},onmouseout:function(e){if(this.touchStart){var i=e.target,s=e.relatedTarget;(!s||s!==i&&!t.contains(i,s))&&this.onmouseup(e)}},ontouchstart:function(t){var e=(t.originalEvent||t).touches[0];this.touchStart={x:e.pageX,y:e.pageY,time:Date.now()},this.isScrolling=void 0,this.touchDelta={}},ontouchmove:function(t){var e,i,s=(t.originalEvent||t).touches[0],n=(t.originalEvent||t).scale,o=this.index;if(!(s.length>1||n&&1!==n))if(this.options.disableScroll&&t.preventDefault(),this.touchDelta={x:s.pageX-this.touchStart.x,y:s.pageY-this.touchStart.y},e=this.touchDelta.x,void 0===this.isScrolling&&(this.isScrolling=this.isScrolling||Math.abs(e)0||o===this.num-1&&0>e?Math.abs(e)/this.slideWidth+1:1,i=[o],o&&i.push(o-1),o20||Math.abs(this.touchDelta.x)>r/2,d=!o&&this.touchDelta.x>0||o===this.num-1&&this.touchDelta.x<0,c=!h&&this.options.closeOnSwipeUpOrDown&&(a&&Math.abs(this.touchDelta.y)>20||Math.abs(this.touchDelta.y)>this.slideHeight/2);this.options.continuous&&(d=!1),t=this.touchDelta.x<0?-1:1,this.isScrolling?c?this.close():this.translateY(o,0,l):h&&!d?(e=o+t,i=o-t,s=r*t,n=-r*t,this.options.continuous?(this.move(this.circle(e),s,0),this.move(this.circle(o-2*t),n,0)):e>=0&&ethis.container[0].clientHeight&&(s.style.maxHeight=this.container[0].clientHeight),this.interval&&this.slides[this.index]===n&&this.play(),this.setTimeout(this.options.onslidecomplete,[i,n]))},onload:function(t){this.oncomplete(t)},onerror:function(t){this.oncomplete(t)},onkeydown:function(t){switch(t.which||t.keyCode){case 13:this.options.toggleControlsOnReturn&&(this.preventDefault(t),this.toggleControls());break;case 27:this.options.closeOnEscape&&this.close();break;case 32:this.options.toggleSlideshowOnSpace&&(this.preventDefault(t),this.toggleSlideshow());break;case 37:this.options.enableKeyboardNavigation&&(this.preventDefault(t),this.prev());break;case 39:this.options.enableKeyboardNavigation&&(this.preventDefault(t),this.next())}},handleClick:function(e){var i=this.options,s=e.target||e.srcElement,n=s.parentNode,o=function(e){return t(s).hasClass(e)||t(n).hasClass(e)};n===this.slidesContainer[0]?(this.preventDefault(e),i.closeOnSlideClick?this.close():this.toggleControls()):n.parentNode&&n.parentNode===this.slidesContainer[0]?(this.preventDefault(e),this.toggleControls()):o(i.toggleClass)?(this.preventDefault(e),this.toggleControls()):o(i.prevClass)?(this.preventDefault(e),this.prev()):o(i.nextClass)?(this.preventDefault(e),this.next()):o(i.closeClass)?(this.preventDefault(e),this.close()):o(i.playPauseClass)&&(this.preventDefault(e),this.toggleSlideshow())},onclick:function(t){return this.options.emulateTouchEvents&&this.touchDelta&&(Math.abs(this.touchDelta.x)>20||Math.abs(this.touchDelta.y)>20)?(delete this.touchDelta,void 0):this.handleClick(t)},updateEdgeClasses:function(t){t?this.container.removeClass(this.options.leftEdgeClass):this.container.addClass(this.options.leftEdgeClass),t===this.num-1?this.container.addClass(this.options.rightEdgeClass):this.container.removeClass(this.options.rightEdgeClass)},handleSlide:function(t){this.options.continuous||this.updateEdgeClasses(t),this.loadElements(t),this.options.unloadElements&&this.unloadElements(t),this.setTitle(t)},onslide:function(t){this.index=t,this.handleSlide(t),this.setTimeout(this.options.onslide,[t,this.slides[t]])},setTitle:function(t){var e=this.slides[t].firstChild.title,i=this.titleElement;i.length&&(this.titleElement.empty(),e&&i[0].appendChild(document.createTextNode(e)))},setTimeout:function(t,e,i){var s=this;return t&&window.setTimeout(function(){t.apply(s,e||[])},i||0)},imageFactory:function(e,i){var s,n,o,l=this,r=this.imagePrototype.cloneNode(!1),a=e,h=this.options.stretchImages&&this.support.backgroundSize&&this.support.backgroundSize.contain,d=function(e){if(!s){if(e={type:e.type,target:n},!n.parentNode)return l.setTimeout(d,[e]);s=!0,t(r).off("load error",d),h&&"load"===e.type&&(n.style.background='url("'+a+'") center no-repeat',n.style.backgroundSize="contain"),i(e)}};return"string"!=typeof a&&(a=this.getItemProperty(e,this.options.urlProperty),o=this.getItemProperty(e,this.options.titleProperty)),h?n=this.elementPrototype.cloneNode(!1):(n=r,r.draggable=!1),o&&(n.title=o),t(r).on("load error",d),r.src=a,n},createElement:function(e,i){var s=e&&this.getItemProperty(e,this.options.typeProperty),n=s&&this[s.split("/")[0]+"Factory"]||this.imageFactory,o=e&&n.call(this,e,i);return o||(o=this.elementPrototype.cloneNode(!1),this.setTimeout(i,[{type:"error",target:o}])),t(o).addClass(this.options.slideContentClass),o},loadElement:function(e){this.elements[e]||(this.slides[e].firstChild?this.elements[e]=t(this.slides[e]).hasClass(this.options.slideErrorClass)?3:2:(this.elements[e]=1,t(this.slides[e]).addClass(this.options.slideLoadingClass),this.slides[e].appendChild(this.createElement(this.list[e],this.proxyListener))))},loadElements:function(t){var e,i=Math.min(this.num,2*this.options.preloadRange+1),s=t;for(e=0;i>e;e+=1)s+=e*(0===e%2?-1:1),s=this.circle(s),this.loadElement(s)},unloadElements:function(t){var e,i,s;for(e in this.elements)this.elements.hasOwnProperty(e)&&(s=Math.abs(t-e),s>this.options.preloadRange&&s+this.options.preloadRanget?-this.slideWidth:this.index= unit.size) { - return prefix + (bytes / unit.size).toFixed(2) + suffix; - } - i += 1; - } - }; - }; - }) - - // The FileUploadController initializes the fileupload widget and - // provides scope methods to control the File Upload functionality: - .controller('FileUploadController', [ - '$scope', '$element', '$attrs', '$window', 'fileUpload', - function ($scope, $element, $attrs, $window, fileUpload) { - var uploadMethods = { - progress: function () { - return $element.fileupload('progress'); - }, - active: function () { - return $element.fileupload('active'); - }, - option: function (option, data) { - return $element.fileupload('option', option, data); - }, - add: function (data) { - return $element.fileupload('add', data); - }, - send: function (data) { - return $element.fileupload('send', data); - }, - process: function (data) { - return $element.fileupload('process', data); - }, - processing: function (data) { - return $element.fileupload('processing', data); - } - }; - $scope.disabled = !$window.jQuery.support.fileInput; - $scope.queue = $scope.queue || []; - $scope.clear = function (files) { - var queue = this.queue, - i = queue.length, - file = files, - length = 1; - if (angular.isArray(files)) { - file = files[0]; - length = files.length; - } - while (i) { - i -= 1; - if (queue[i] === file) { - return queue.splice(i, length); - } - } - }; - $scope.replace = function (oldFiles, newFiles) { - var queue = this.queue, - file = oldFiles[0], - i, - j; - for (i = 0; i < queue.length; i += 1) { - if (queue[i] === file) { - for (j = 0; j < newFiles.length; j += 1) { - queue[i + j] = newFiles[j]; - } - return; - } - } - }; - $scope.applyOnQueue = function (method) { - var list = this.queue.slice(0), - i, - file; - for (i = 0; i < list.length; i += 1) { - file = list[i]; - if (file[method]) { - file[method](); - } - } - }; - $scope.submit = function () { - this.applyOnQueue('$submit'); - }; - $scope.cancel = function () { - this.applyOnQueue('$cancel'); - }; - // Add upload methods to the scope: - angular.extend($scope, uploadMethods); - // The fileupload widget will initialize with - // the options provided via "data-"-parameters, - // as well as those given via options object: - $element.fileupload(angular.extend( - {scope: function () { - return $scope; - }}, - fileUpload.defaults - )).on('fileuploadadd', function (e, data) { - data.scope = $scope.option('scope'); - }).on([ - 'fileuploadadd', - 'fileuploadsubmit', - 'fileuploadsend', - 'fileuploaddone', - 'fileuploadfail', - 'fileuploadalways', - 'fileuploadprogress', - 'fileuploadprogressall', - 'fileuploadstart', - 'fileuploadstop', - 'fileuploadchange', - 'fileuploadpaste', - 'fileuploaddrop', - 'fileuploaddragover', - 'fileuploadchunksend', - 'fileuploadchunkdone', - 'fileuploadchunkfail', - 'fileuploadchunkalways', - 'fileuploadprocessstart', - 'fileuploadprocess', - 'fileuploadprocessdone', - 'fileuploadprocessfail', - 'fileuploadprocessalways', - 'fileuploadprocessstop' - ].join(' '), function (e, data) { - if ($scope.$emit(e.type, data).defaultPrevented) { - e.preventDefault(); - } - }).on('remove', function () { - // Remove upload methods from the scope, - // when the widget is removed: - var method; - for (method in uploadMethods) { - if (uploadMethods.hasOwnProperty(method)) { - delete $scope[method]; - } - } - }); - // Observe option changes: - $scope.$watch( - $attrs.fileUpload, - function (newOptions) { - if (newOptions) { - $element.fileupload('option', newOptions); - } - } - ); - } - ]) - - // Provide File Upload progress feedback: - .controller('FileUploadProgressController', [ - '$scope', '$attrs', '$parse', - function ($scope, $attrs, $parse) { - var fn = $parse($attrs.fileUploadProgress), - update = function () { - var progress = fn($scope); - if (!progress || !progress.total) { - return; - } - $scope.num = Math.floor( - progress.loaded / progress.total * 100 - ); - }; - update(); - $scope.$watch( - $attrs.fileUploadProgress + '.loaded', - function (newValue, oldValue) { - if (newValue !== oldValue) { - update(); - } - } - ); - } - ]) - - // Display File Upload previews: - .controller('FileUploadPreviewController', [ - '$scope', '$element', '$attrs', '$parse', - function ($scope, $element, $attrs, $parse) { - var fn = $parse($attrs.fileUploadPreview), - file = fn($scope); - if (file.preview) { - $element.append(file.preview); - } - } - ]) - - .directive('fileUpload', function () { - return { - controller: 'FileUploadController' - }; - }) - - .directive('fileUploadProgress', function () { - return { - controller: 'FileUploadProgressController' - }; - }) - - .directive('fileUploadPreview', function () { - return { - controller: 'FileUploadPreviewController' - }; - }) - - // Enhance the HTML5 download attribute to - // allow drag&drop of files to the desktop: - .directive('download', function () { - return function (scope, elm) { - elm.on('dragstart', function (e) { - try { - e.originalEvent.dataTransfer.setData( - 'DownloadURL', - [ - 'application/octet-stream', - elm.prop('download'), - elm.prop('href') - ].join(':') - ); - } catch (ignore) {} - }); - }; - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-audio.js b/static/file_upload/js/jquery.fileupload-audio.js deleted file mode 100644 index f59c2fa5..00000000 --- a/static/file_upload/js/jquery.fileupload-audio.js +++ /dev/null @@ -1,106 +0,0 @@ -/* - * jQuery File Upload Audio Preview Plugin 1.0.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadAudio', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - disabled: '@disableAudioPreview' - }, - { - action: 'setAudio', - name: '@audioPreviewName', - disabled: '@disableAudioPreview' - } - ); - - // The File Upload Audio Preview plugin extends the fileupload widget - // with audio preview functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of audio files to load, - // matched against the file type: - loadAudioFileTypes: /^audio\/.*$/ - }, - - _audioElement: document.createElement('audio'), - - processActions: { - - // Loads the audio file given via data.files and data.index - // as audio element if the browser supports playing it. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadAudio: function (data, options) { - if (options.disabled) { - return data; - } - var file = data.files[data.index], - url, - audio; - if (this._audioElement.canPlayType && - this._audioElement.canPlayType(file.type) && - ($.type(options.maxFileSize) !== 'number' || - file.size <= options.maxFileSize) && - (!options.fileTypes || - options.fileTypes.test(file.type))) { - url = loadImage.createObjectURL(file); - if (url) { - audio = this._audioElement.cloneNode(false); - audio.src = url; - audio.controls = true; - data.audio = audio; - return data; - } - } - return data; - }, - - // Sets the audio element as a property of the file object: - setAudio: function (data, options) { - if (data.audio && !options.disabled) { - data.files[data.index][options.name || 'preview'] = data.audio; - } - return data; - } - - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-image.js b/static/file_upload/js/jquery.fileupload-image.js deleted file mode 100644 index 84474a7b..00000000 --- a/static/file_upload/js/jquery.fileupload-image.js +++ /dev/null @@ -1,292 +0,0 @@ -/* - * jQuery File Upload Image Preview & Resize Plugin 1.2.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, document, DataView, Blob, Uint8Array */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - 'load-image-meta', - 'load-image-exif', - 'load-image-ios', - 'canvas-to-blob', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadImageMetaData', - disableImageHead: '@', - disableExif: '@', - disableExifThumbnail: '@', - disableExifSub: '@', - disableExifGps: '@', - disabled: '@disableImageMetaDataLoad' - }, - { - action: 'loadImage', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - noRevoke: '@', - disabled: '@disableImageLoad' - }, - { - action: 'resizeImage', - // Use "image" as prefix for the "@" options: - prefix: 'image', - maxWidth: '@', - maxHeight: '@', - minWidth: '@', - minHeight: '@', - crop: '@', - disabled: '@disableImageResize' - }, - { - action: 'saveImage', - disabled: '@disableImageResize' - }, - { - action: 'saveImageMetaData', - disabled: '@disableImageMetaDataSave' - }, - { - action: 'resizeImage', - // Use "preview" as prefix for the "@" options: - prefix: 'preview', - maxWidth: '@', - maxHeight: '@', - minWidth: '@', - minHeight: '@', - crop: '@', - orientation: '@', - thumbnail: '@', - canvas: '@', - disabled: '@disableImagePreview' - }, - { - action: 'setImage', - name: '@imagePreviewName', - disabled: '@disableImagePreview' - } - ); - - // The File Upload Resize plugin extends the fileupload widget - // with image resize functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of images to load: - // matched against the file type: - loadImageFileTypes: /^image\/(gif|jpeg|png)$/, - // The maximum file size of images to load: - loadImageMaxFileSize: 10000000, // 10MB - // The maximum width of resized images: - imageMaxWidth: 1920, - // The maximum height of resized images: - imageMaxHeight: 1080, - // Define if resized images should be cropped or only scaled: - imageCrop: false, - // Disable the resize image functionality by default: - disableImageResize: true, - // The maximum width of the preview images: - previewMaxWidth: 80, - // The maximum height of the preview images: - previewMaxHeight: 80, - // Defines the preview orientation (1-8) or takes the orientation - // value from Exif data if set to true: - previewOrientation: true, - // Create the preview using the Exif data thumbnail: - previewThumbnail: true, - // Define if preview images should be cropped or only scaled: - previewCrop: false, - // Define if preview images should be resized as canvas elements: - previewCanvas: true - }, - - processActions: { - - // Loads the image given via data.files and data.index - // as img element if the browser supports canvas. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadImage: function (data, options) { - if (options.disabled) { - return data; - } - var that = this, - file = data.files[data.index], - dfd = $.Deferred(); - if (($.type(options.maxFileSize) === 'number' && - file.size > options.maxFileSize) || - (options.fileTypes && - !options.fileTypes.test(file.type)) || - !loadImage( - file, - function (img) { - if (img.src) { - data.img = img; - } - dfd.resolveWith(that, [data]); - }, - options - )) { - return data; - } - return dfd.promise(); - }, - - // Resizes the image given as data.canvas or data.img - // and updates data.canvas or data.img with the resized image. - // Accepts the options maxWidth, maxHeight, minWidth, - // minHeight, canvas and crop: - resizeImage: function (data, options) { - if (options.disabled) { - return data; - } - var that = this, - dfd = $.Deferred(), - resolve = function (newImg) { - data[newImg.getContext ? 'canvas' : 'img'] = newImg; - dfd.resolveWith(that, [data]); - }, - thumbnail, - img, - newImg; - options = $.extend({canvas: true}, options); - if (data.exif) { - if (options.orientation === true) { - options.orientation = data.exif.get('Orientation'); - } - if (options.thumbnail) { - thumbnail = data.exif.get('Thumbnail'); - if (thumbnail) { - loadImage(thumbnail, resolve, options); - return dfd.promise(); - } - } - } - img = (options.canvas && data.canvas) || data.img; - if (img) { - newImg = loadImage.scale(img, options); - if (newImg.width !== img.width || - newImg.height !== img.height) { - resolve(newImg); - return dfd.promise(); - } - } - return data; - }, - - // Saves the processed image given as data.canvas - // inplace at data.index of data.files: - saveImage: function (data, options) { - if (!data.canvas || options.disabled) { - return data; - } - var that = this, - file = data.files[data.index], - name = file.name, - dfd = $.Deferred(), - callback = function (blob) { - if (!blob.name) { - if (file.type === blob.type) { - blob.name = file.name; - } else if (file.name) { - blob.name = file.name.replace( - /\..+$/, - '.' + blob.type.substr(6) - ); - } - } - // Store the created blob at the position - // of the original file in the files list: - data.files[data.index] = blob; - dfd.resolveWith(that, [data]); - }; - // Use canvas.mozGetAsFile directly, to retain the filename, as - // Gecko doesn't support the filename option for FormData.append: - if (data.canvas.mozGetAsFile) { - callback(data.canvas.mozGetAsFile( - (/^image\/(jpeg|png)$/.test(file.type) && name) || - ((name && name.replace(/\..+$/, '')) || - 'blob') + '.png', - file.type - )); - } else if (data.canvas.toBlob) { - data.canvas.toBlob(callback, file.type); - } else { - return data; - } - return dfd.promise(); - }, - - loadImageMetaData: function (data, options) { - if (options.disabled) { - return data; - } - var that = this, - dfd = $.Deferred(); - loadImage.parseMetaData(data.files[data.index], function (result) { - $.extend(data, result); - dfd.resolveWith(that, [data]); - }, options); - return dfd.promise(); - }, - - saveImageMetaData: function (data, options) { - if (!(data.imageHead && data.canvas && - data.canvas.toBlob && !options.disabled)) { - return data; - } - var file = data.files[data.index], - blob = new Blob([ - data.imageHead, - // Resized images always have a head size of 20 bytes, - // including the JPEG marker and a minimal JFIF header: - this._blobSlice.call(file, 20) - ], {type: file.type}); - blob.name = file.name; - data.files[data.index] = blob; - return data; - }, - - // Sets the resized version of the image as a property of the - // file object, must be called after "saveImage": - setImage: function (data, options) { - var img = data.canvas || data.img; - if (img && !options.disabled) { - data.files[data.index][options.name || 'preview'] = img; - } - return data; - } - - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-jquery-ui.js b/static/file_upload/js/jquery.fileupload-jquery-ui.js deleted file mode 100644 index 05dd7a61..00000000 --- a/static/file_upload/js/jquery.fileupload-jquery-ui.js +++ /dev/null @@ -1,138 +0,0 @@ -/* - * jQuery File Upload jQuery UI Plugin 8.7.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true */ -/*global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery', './jquery.fileupload-ui'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - progress: function (e, data) { - if (data.context) { - data.context.find('.progress').progressbar( - 'option', - 'value', - parseInt(data.loaded / data.total * 100, 10) - ); - } - }, - progressall: function (e, data) { - var $this = $(this); - $this.find('.fileupload-progress') - .find('.progress').progressbar( - 'option', - 'value', - parseInt(data.loaded / data.total * 100, 10) - ).end() - .find('.progress-extended').each(function () { - $(this).html( - ($this.data('blueimp-fileupload') || - $this.data('fileupload')) - ._renderExtendedProgress(data) - ); - }); - } - }, - - _renderUpload: function (func, files) { - var node = this._super(func, files), - showIconText = $(window).width() > 480; - node.find('.progress').empty().progressbar(); - node.find('.start').button({ - icons: {primary: 'ui-icon-circle-arrow-e'}, - text: showIconText - }); - node.find('.cancel').button({ - icons: {primary: 'ui-icon-cancel'}, - text: showIconText - }); - return node; - }, - - _renderDownload: function (func, files) { - var node = this._super(func, files), - showIconText = $(window).width() > 480; - node.find('.delete').button({ - icons: {primary: 'ui-icon-trash'}, - text: showIconText - }); - return node; - }, - - _transition: function (node) { - var deferred = $.Deferred(); - if (node.hasClass('fade')) { - node.fadeToggle( - this.options.transitionDuration, - this.options.transitionEasing, - function () { - deferred.resolveWith(node); - } - ); - } else { - deferred.resolveWith(node); - } - return deferred; - }, - - _create: function () { - this._super(); - this.element - .find('.fileupload-buttonbar') - .find('.fileinput-button').each(function () { - var input = $(this).find('input:file').detach(); - $(this) - .button({icons: {primary: 'ui-icon-plusthick'}}) - .append(input); - }) - .end().find('.start') - .button({icons: {primary: 'ui-icon-circle-arrow-e'}}) - .end().find('.cancel') - .button({icons: {primary: 'ui-icon-cancel'}}) - .end().find('.delete') - .button({icons: {primary: 'ui-icon-trash'}}) - .end().find('.progress').progressbar(); - }, - - _destroy: function () { - this.element - .find('.fileupload-buttonbar') - .find('.fileinput-button').each(function () { - var input = $(this).find('input:file').detach(); - $(this) - .button('destroy') - .append(input); - }) - .end().find('.start') - .button('destroy') - .end().find('.cancel') - .button('destroy') - .end().find('.delete') - .button('destroy') - .end().find('.progress').progressbar('destroy'); - this._super(); - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-process.js b/static/file_upload/js/jquery.fileupload-process.js deleted file mode 100644 index 87042c3d..00000000 --- a/static/file_upload/js/jquery.fileupload-process.js +++ /dev/null @@ -1,164 +0,0 @@ -/* - * jQuery File Upload Processing Plugin 1.2.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true */ -/*global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - './jquery.fileupload' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery - ); - } -}(function ($) { - 'use strict'; - - var originalAdd = $.blueimp.fileupload.prototype.options.add; - - // The File Upload Processing plugin extends the fileupload widget - // with file processing functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The list of processing actions: - processQueue: [ - /* - { - action: 'log', - type: 'debug' - } - */ - ], - add: function (e, data) { - var $this = $(this); - data.process(function () { - return $this.fileupload('process', data); - }); - originalAdd.call(this, e, data); - } - }, - - processActions: { - /* - log: function (data, options) { - console[options.type]( - 'Processing "' + data.files[data.index].name + '"' - ); - } - */ - }, - - _processFile: function (data) { - var that = this, - dfd = $.Deferred().resolveWith(that, [data]), - chain = dfd.promise(); - this._trigger('process', null, data); - $.each(data.processQueue, function (i, settings) { - var func = function (data) { - return that.processActions[settings.action].call( - that, - data, - settings - ); - }; - chain = chain.pipe(func, settings.always && func); - }); - chain - .done(function () { - that._trigger('processdone', null, data); - that._trigger('processalways', null, data); - }) - .fail(function () { - that._trigger('processfail', null, data); - that._trigger('processalways', null, data); - }); - return chain; - }, - - // Replaces the settings of each processQueue item that - // are strings starting with an "@", using the remaining - // substring as key for the option map, - // e.g. "@autoUpload" is replaced with options.autoUpload: - _transformProcessQueue: function (options) { - var processQueue = []; - $.each(options.processQueue, function () { - var settings = {}, - action = this.action, - prefix = this.prefix === true ? action : this.prefix; - $.each(this, function (key, value) { - if ($.type(value) === 'string' && - value.charAt(0) === '@') { - settings[key] = options[ - value.slice(1) || (prefix ? prefix + - key.charAt(0).toUpperCase() + key.slice(1) : key) - ]; - } else { - settings[key] = value; - } - - }); - processQueue.push(settings); - }); - options.processQueue = processQueue; - }, - - // Returns the number of files currently in the processsing queue: - processing: function () { - return this._processing; - }, - - // Processes the files given as files property of the data parameter, - // returns a Promise object that allows to bind callbacks: - process: function (data) { - var that = this, - options = $.extend({}, this.options, data); - if (options.processQueue && options.processQueue.length) { - this._transformProcessQueue(options); - if (this._processing === 0) { - this._trigger('processstart'); - } - $.each(data.files, function (index) { - var opts = index ? $.extend({}, options) : options, - func = function () { - return that._processFile(opts); - }; - opts.index = index; - that._processing += 1; - that._processingQueue = that._processingQueue.pipe(func, func) - .always(function () { - that._processing -= 1; - if (that._processing === 0) { - that._trigger('processstop'); - } - }); - }); - } - return this._processingQueue; - }, - - _create: function () { - this._super(); - this._processing = 0; - this._processingQueue = $.Deferred().resolveWith(this) - .promise(); - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-ui.js b/static/file_upload/js/jquery.fileupload-ui.js deleted file mode 100644 index 59381fcb..00000000 --- a/static/file_upload/js/jquery.fileupload-ui.js +++ /dev/null @@ -1,643 +0,0 @@ -/* - * jQuery File Upload User Interface Plugin 8.8.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, URL, webkitURL, FileReader */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'tmpl', - './jquery.fileupload-image', - './jquery.fileupload-audio', - './jquery.fileupload-video', - './jquery.fileupload-validate' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.tmpl - ); - } -}(function ($, tmpl, loadImage) { - 'use strict'; - - $.blueimp.fileupload.prototype._specialOptions.push( - 'filesContainer', - 'uploadTemplateId', - 'downloadTemplateId' - ); - - // The UI version extends the file upload widget - // and adds complete user interface interaction: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // By default, files added to the widget are uploaded as soon - // as the user clicks on the start buttons. To enable automatic - // uploads, set the following option to true: - autoUpload: false, - // The ID of the upload template: - uploadTemplateId: 'template-upload', - // The ID of the download template: - downloadTemplateId: 'template-download', - // The container for the list of files. If undefined, it is set to - // an element with class "files" inside of the widget element: - filesContainer: undefined, - // By default, files are appended to the files container. - // Set the following option to true, to prepend files instead: - prependFiles: false, - // The expected data type of the upload response, sets the dataType - // option of the $.ajax upload requests: - dataType: 'json', - - // Function returning the current number of files, - // used by the maxNumberOfFiles validation: - getNumberOfFiles: function () { - return this.filesContainer.children().length; - }, - - // Callback to retrieve the list of files from the server response: - getFilesFromResponse: function (data) { - if (data.result && $.isArray(data.result.files)) { - return data.result.files; - } - return []; - }, - - // The add callback is invoked as soon as files are added to the fileupload - // widget (via file input selection, drag & drop or add API call). - // See the basic file upload widget for more information: - add: function (e, data) { - var $this = $(this), - that = $this.data('blueimp-fileupload') || - $this.data('fileupload'), - options = that.options, - files = data.files; - data.process(function () { - return $this.fileupload('process', data); - }).always(function () { - data.context = that._renderUpload(files).data('data', data); - that._renderPreviews(data); - options.filesContainer[ - options.prependFiles ? 'prepend' : 'append' - ](data.context); - that._forceReflow(data.context); - that._transition(data.context).done( - function () { - if ((that._trigger('added', e, data) !== false) && - (options.autoUpload || data.autoUpload) && - data.autoUpload !== false && !data.files.error) { - data.submit(); - } - } - ); - }); - }, - // Callback for the start of each file upload request: - send: function (e, data) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'); - if (data.context && data.dataType && - data.dataType.substr(0, 6) === 'iframe') { - // Iframe Transport does not support progress events. - // In lack of an indeterminate progress bar, we set - // the progress to 100%, showing the full animated bar: - data.context - .find('.progress').addClass( - !$.support.transition && 'progress-animated' - ) - .attr('aria-valuenow', 100) - .children().first().css( - 'width', - '100%' - ); - } - return that._trigger('sent', e, data); - }, - // Callback for successful uploads: - done: function (e, data) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - getFilesFromResponse = data.getFilesFromResponse || - that.options.getFilesFromResponse, - files = getFilesFromResponse(data), - template, - deferred; - if (data.context) { - data.context.each(function (index) { - var file = files[index] || - {error: 'Empty file upload result'}; - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - var node = $(this); - template = that._renderDownload([file]) - .replaceAll(node); - that._forceReflow(template); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('completed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - ); - }); - } else { - template = that._renderDownload(files)[ - that.options.prependFiles ? 'prependTo' : 'appendTo' - ](that.options.filesContainer); - that._forceReflow(template); - deferred = that._addFinishedDeferreds(); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('completed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - }, - // Callback for failed (abort or error) uploads: - fail: function (e, data) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - template, - deferred; - if (data.context) { - data.context.each(function (index) { - if (data.errorThrown !== 'abort') { - var file = data.files[index]; - file.error = file.error || data.errorThrown || - true; - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - var node = $(this); - template = that._renderDownload([file]) - .replaceAll(node); - that._forceReflow(template); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - ); - } else { - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - $(this).remove(); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - }); - } else if (data.errorThrown !== 'abort') { - data.context = that._renderUpload(data.files)[ - that.options.prependFiles ? 'prependTo' : 'appendTo' - ](that.options.filesContainer) - .data('data', data); - that._forceReflow(data.context); - deferred = that._addFinishedDeferreds(); - that._transition(data.context).done( - function () { - data.context = $(this); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } else { - that._trigger('failed', e, data); - that._trigger('finished', e, data); - that._addFinishedDeferreds().resolve(); - } - }, - // Callback for upload progress events: - progress: function (e, data) { - if (data.context) { - var progress = Math.floor(data.loaded / data.total * 100); - data.context.find('.progress') - .attr('aria-valuenow', progress) - .children().first().css( - 'width', - progress + '%' - ); - } - }, - // Callback for global upload progress events: - progressall: function (e, data) { - var $this = $(this), - progress = Math.floor(data.loaded / data.total * 100), - globalProgressNode = $this.find('.fileupload-progress'), - extendedProgressNode = globalProgressNode - .find('.progress-extended'); - if (extendedProgressNode.length) { - extendedProgressNode.html( - ($this.data('blueimp-fileupload') || $this.data('fileupload')) - ._renderExtendedProgress(data) - ); - } - globalProgressNode - .find('.progress') - .attr('aria-valuenow', progress) - .children().first().css( - 'width', - progress + '%' - ); - }, - // Callback for uploads start, equivalent to the global ajaxStart event: - start: function (e) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'); - that._resetFinishedDeferreds(); - that._transition($(this).find('.fileupload-progress')).done( - function () { - that._trigger('started', e); - } - ); - }, - // Callback for uploads stop, equivalent to the global ajaxStop event: - stop: function (e) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - deferred = that._addFinishedDeferreds(); - $.when.apply($, that._getFinishedDeferreds()) - .done(function () { - that._trigger('stopped', e); - }); - that._transition($(this).find('.fileupload-progress')).done( - function () { - $(this).find('.progress') - .attr('aria-valuenow', '0') - .children().first().css('width', '0%'); - $(this).find('.progress-extended').html(' '); - deferred.resolve(); - } - ); - }, - processstart: function () { - $(this).addClass('fileupload-processing'); - }, - processstop: function () { - $(this).removeClass('fileupload-processing'); - }, - // Callback for file deletion: - destroy: function (e, data) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - removeNode = function () { - that._transition(data.context).done( - function () { - $(this).remove(); - that._trigger('destroyed', e, data); - } - ); - }; - if (data.url) { - $.ajax(data).done(removeNode); - } else { - removeNode(); - } - } - }, - - _resetFinishedDeferreds: function () { - this._finishedUploads = []; - }, - - _addFinishedDeferreds: function (deferred) { - if (!deferred) { - deferred = $.Deferred(); - } - this._finishedUploads.push(deferred); - return deferred; - }, - - _getFinishedDeferreds: function () { - return this._finishedUploads; - }, - - // Link handler, that allows to download files - // by drag & drop of the links to the desktop: - _enableDragToDesktop: function () { - var link = $(this), - url = link.prop('href'), - name = link.prop('download'), - type = 'application/octet-stream'; - link.bind('dragstart', function (e) { - try { - e.originalEvent.dataTransfer.setData( - 'DownloadURL', - [type, name, url].join(':') - ); - } catch (ignore) {} - }); - }, - - _formatFileSize: function (bytes) { - if (typeof bytes !== 'number') { - return ''; - } - if (bytes >= 1000000000) { - return (bytes / 1000000000).toFixed(2) + ' GB'; - } - if (bytes >= 1000000) { - return (bytes / 1000000).toFixed(2) + ' MB'; - } - return (bytes / 1000).toFixed(2) + ' KB'; - }, - - _formatBitrate: function (bits) { - if (typeof bits !== 'number') { - return ''; - } - if (bits >= 1000000000) { - return (bits / 1000000000).toFixed(2) + ' Gbit/s'; - } - if (bits >= 1000000) { - return (bits / 1000000).toFixed(2) + ' Mbit/s'; - } - if (bits >= 1000) { - return (bits / 1000).toFixed(2) + ' kbit/s'; - } - return bits.toFixed(2) + ' bit/s'; - }, - - _formatTime: function (seconds) { - var date = new Date(seconds * 1000), - days = Math.floor(seconds / 86400); - days = days ? days + 'd ' : ''; - return days + - ('0' + date.getUTCHours()).slice(-2) + ':' + - ('0' + date.getUTCMinutes()).slice(-2) + ':' + - ('0' + date.getUTCSeconds()).slice(-2); - }, - - _formatPercentage: function (floatValue) { - return (floatValue * 100).toFixed(2) + ' %'; - }, - - _renderExtendedProgress: function (data) { - return this._formatBitrate(data.bitrate) + ' | ' + - this._formatTime( - (data.total - data.loaded) * 8 / data.bitrate - ) + ' | ' + - this._formatPercentage( - data.loaded / data.total - ) + ' | ' + - this._formatFileSize(data.loaded) + ' / ' + - this._formatFileSize(data.total); - }, - - _renderTemplate: function (func, files) { - if (!func) { - return $(); - } - var result = func({ - files: files, - formatFileSize: this._formatFileSize, - options: this.options - }); - if (result instanceof $) { - return result; - } - return $(this.options.templatesContainer).html(result).children(); - }, - - _renderPreviews: function (data) { - data.context.find('.preview').each(function (index, elm) { - $(elm).append(data.files[index].preview); - }); - }, - - _renderUpload: function (files) { - return this._renderTemplate( - this.options.uploadTemplate, - files - ); - }, - - _renderDownload: function (files) { - return this._renderTemplate( - this.options.downloadTemplate, - files - ).find('a[download]').each(this._enableDragToDesktop).end(); - }, - - _startHandler: function (e) { - e.preventDefault(); - var button = $(e.currentTarget), - template = button.closest('.template-upload'), - data = template.data('data'); - if (data && data.submit && !data.jqXHR && data.submit()) { - button.prop('disabled', true); - } - }, - - _cancelHandler: function (e) { - e.preventDefault(); - var template = $(e.currentTarget).closest('.template-upload'), - data = template.data('data') || {}; - if (!data.jqXHR) { - data.errorThrown = 'abort'; - this._trigger('fail', e, data); - } else { - data.jqXHR.abort(); - } - }, - - _deleteHandler: function (e) { - e.preventDefault(); - var button = $(e.currentTarget); - this._trigger('destroy', e, $.extend({ - context: button.closest('.template-download'), - type: 'DELETE' - }, button.data())); - }, - - _forceReflow: function (node) { - return $.support.transition && node.length && - node[0].offsetWidth; - }, - - _transition: function (node) { - var dfd = $.Deferred(); - if ($.support.transition && node.hasClass('fade') && node.is(':visible')) { - node.bind( - $.support.transition.end, - function (e) { - // Make sure we don't respond to other transitions events - // in the container element, e.g. from button elements: - if (e.target === node[0]) { - node.unbind($.support.transition.end); - dfd.resolveWith(node); - } - } - ).toggleClass('in'); - } else { - node.toggleClass('in'); - dfd.resolveWith(node); - } - return dfd; - }, - - _initButtonBarEventHandlers: function () { - var fileUploadButtonBar = this.element.find('.fileupload-buttonbar'), - filesList = this.options.filesContainer; - this._on(fileUploadButtonBar.find('.start'), { - click: function (e) { - e.preventDefault(); - filesList.find('.start').click(); - } - }); - this._on(fileUploadButtonBar.find('.cancel'), { - click: function (e) { - e.preventDefault(); - filesList.find('.cancel').click(); - } - }); - this._on(fileUploadButtonBar.find('.delete'), { - click: function (e) { - e.preventDefault(); - filesList.find('.toggle:checked') - .closest('.template-download') - .find('.delete').click(); - fileUploadButtonBar.find('.toggle') - .prop('checked', false); - } - }); - this._on(fileUploadButtonBar.find('.toggle'), { - change: function (e) { - filesList.find('.toggle').prop( - 'checked', - $(e.currentTarget).is(':checked') - ); - } - }); - }, - - _destroyButtonBarEventHandlers: function () { - this._off( - this.element.find('.fileupload-buttonbar') - .find('.start, .cancel, .delete'), - 'click' - ); - this._off( - this.element.find('.fileupload-buttonbar .toggle'), - 'change.' - ); - }, - - _initEventHandlers: function () { - this._super(); - this._on(this.options.filesContainer, { - 'click .start': this._startHandler, - 'click .cancel': this._cancelHandler, - 'click .delete': this._deleteHandler - }); - this._initButtonBarEventHandlers(); - }, - - _destroyEventHandlers: function () { - this._destroyButtonBarEventHandlers(); - this._off(this.options.filesContainer, 'click'); - this._super(); - }, - - _enableFileInputButton: function () { - this.element.find('.fileinput-button input') - .prop('disabled', false) - .parent().removeClass('disabled'); - }, - - _disableFileInputButton: function () { - this.element.find('.fileinput-button input') - .prop('disabled', true) - .parent().addClass('disabled'); - }, - - _initTemplates: function () { - var options = this.options; - options.templatesContainer = this.document[0].createElement( - options.filesContainer.prop('nodeName') - ); - if (tmpl) { - if (options.uploadTemplateId) { - options.uploadTemplate = tmpl(options.uploadTemplateId); - } - if (options.downloadTemplateId) { - options.downloadTemplate = tmpl(options.downloadTemplateId); - } - } - }, - - _initFilesContainer: function () { - var options = this.options; - if (options.filesContainer === undefined) { - options.filesContainer = this.element.find('.files'); - } else if (!(options.filesContainer instanceof $)) { - options.filesContainer = $(options.filesContainer); - } - }, - - _initSpecialOptions: function () { - this._super(); - this._initFilesContainer(); - this._initTemplates(); - }, - - _create: function () { - this._super(); - this._resetFinishedDeferreds(); - if (!$.support.fileInput) { - this._disableFileInputButton(); - } - }, - - enable: function () { - var wasDisabled = false; - if (this.options.disabled) { - wasDisabled = true; - } - this._super(); - if (wasDisabled) { - this.element.find('input, button').prop('disabled', false); - this._enableFileInputButton(); - } - }, - - disable: function () { - if (!this.options.disabled) { - this.element.find('input, button').prop('disabled', true); - this._disableFileInputButton(); - } - this._super(); - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-validate.js b/static/file_upload/js/jquery.fileupload-validate.js deleted file mode 100644 index ee1c2f2e..00000000 --- a/static/file_upload/js/jquery.fileupload-validate.js +++ /dev/null @@ -1,117 +0,0 @@ -/* - * jQuery File Upload Validation Plugin 1.1.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery - ); - } -}(function ($) { - 'use strict'; - - // Append to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.push( - { - action: 'validate', - // Always trigger this action, - // even if the previous action was rejected: - always: true, - // Options taken from the global options map: - acceptFileTypes: '@', - maxFileSize: '@', - minFileSize: '@', - maxNumberOfFiles: '@', - disabled: '@disableValidation' - } - ); - - // The File Upload Validation plugin extends the fileupload widget - // with file validation functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - /* - // The regular expression for allowed file types, matches - // against either file type or file name: - acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i, - // The maximum allowed file size in bytes: - maxFileSize: 10000000, // 10 MB - // The minimum allowed file size in bytes: - minFileSize: undefined, // No minimal file size - // The limit of files to be uploaded: - maxNumberOfFiles: 10, - */ - - // Function returning the current number of files, - // has to be overriden for maxNumberOfFiles validation: - getNumberOfFiles: $.noop, - - // Error and info messages: - messages: { - maxNumberOfFiles: 'Maximum number of files exceeded', - acceptFileTypes: 'File type not allowed', - maxFileSize: 'File is too large', - minFileSize: 'File is too small' - } - }, - - processActions: { - - validate: function (data, options) { - if (options.disabled) { - return data; - } - var dfd = $.Deferred(), - settings = this.options, - file = data.files[data.index]; - if ($.type(options.maxNumberOfFiles) === 'number' && - (settings.getNumberOfFiles() || 0) + data.files.length > - options.maxNumberOfFiles) { - file.error = settings.i18n('maxNumberOfFiles'); - } else if (options.acceptFileTypes && - !(options.acceptFileTypes.test(file.type) || - options.acceptFileTypes.test(file.name))) { - file.error = settings.i18n('acceptFileTypes'); - } else if (options.maxFileSize && file.size > - options.maxFileSize) { - file.error = settings.i18n('maxFileSize'); - } else if ($.type(file.size) === 'number' && - file.size < options.minFileSize) { - file.error = settings.i18n('minFileSize'); - } else { - delete file.error; - } - if (file.error || data.files.error) { - data.files.error = true; - dfd.rejectWith(this, [data]); - } else { - dfd.resolveWith(this, [data]); - } - return dfd.promise(); - } - - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-video.js b/static/file_upload/js/jquery.fileupload-video.js deleted file mode 100644 index c8b10193..00000000 --- a/static/file_upload/js/jquery.fileupload-video.js +++ /dev/null @@ -1,106 +0,0 @@ -/* - * jQuery File Upload Video Preview Plugin 1.0.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadVideo', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - disabled: '@disableVideoPreview' - }, - { - action: 'setVideo', - name: '@videoPreviewName', - disabled: '@disableVideoPreview' - } - ); - - // The File Upload Video Preview plugin extends the fileupload widget - // with video preview functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of video files to load, - // matched against the file type: - loadVideoFileTypes: /^video\/.*$/ - }, - - _videoElement: document.createElement('video'), - - processActions: { - - // Loads the video file given via data.files and data.index - // as video element if the browser supports playing it. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadVideo: function (data, options) { - if (options.disabled) { - return data; - } - var file = data.files[data.index], - url, - video; - if (this._videoElement.canPlayType && - this._videoElement.canPlayType(file.type) && - ($.type(options.maxFileSize) !== 'number' || - file.size <= options.maxFileSize) && - (!options.fileTypes || - options.fileTypes.test(file.type))) { - url = loadImage.createObjectURL(file); - if (url) { - video = this._videoElement.cloneNode(false); - video.src = url; - video.controls = true; - data.video = video; - return data; - } - } - return data; - }, - - // Sets the video element as a property of the file object: - setVideo: function (data, options) { - if (data.video && !options.disabled) { - data.files[data.index][options.name || 'preview'] = data.video; - } - return data; - } - - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload.js b/static/file_upload/js/jquery.fileupload.js deleted file mode 100644 index 3a1ec705..00000000 --- a/static/file_upload/js/jquery.fileupload.js +++ /dev/null @@ -1,1336 +0,0 @@ -/* - * jQuery File Upload Plugin 5.32.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, document, location, File, Blob, FormData */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'jquery.ui.widget' - ], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - // Detect file input support, based on - // http://viljamis.com/blog/2012/file-upload-support-on-mobile/ - $.support.fileInput = !(new RegExp( - // Handle devices which give false positives for the feature detection: - '(Android (1\\.[0156]|2\\.[01]))' + - '|(Windows Phone (OS 7|8\\.0))|(XBLWP)|(ZuneWP)|(WPDesktop)' + - '|(w(eb)?OSBrowser)|(webOS)' + - '|(Kindle/(1\\.0|2\\.[05]|3\\.0))' - ).test(window.navigator.userAgent) || - // Feature detection for all other devices: - $('').prop('disabled')); - - // The FileReader API is not actually used, but works as feature detection, - // as e.g. Safari supports XHR file uploads via the FormData API, - // but not non-multipart XHR file uploads: - $.support.xhrFileUpload = !!(window.XMLHttpRequestUpload && window.FileReader); - $.support.xhrFormDataFileUpload = !!window.FormData; - - // Detect support for Blob slicing (required for chunked uploads): - $.support.blobSlice = window.Blob && (Blob.prototype.slice || - Blob.prototype.webkitSlice || Blob.prototype.mozSlice); - - // The fileupload widget listens for change events on file input fields defined - // via fileInput setting and paste or drop events of the given dropZone. - // In addition to the default jQuery Widget methods, the fileupload widget - // exposes the "add" and "send" methods, to add or directly send files using - // the fileupload API. - // By default, files added via file input selection, paste, drag & drop or - // "add" method are uploaded immediately, but it is possible to override - // the "add" callback option to queue file uploads. - $.widget('blueimp.fileupload', { - - options: { - // The drop target element(s), by the default the complete document. - // Set to null to disable drag & drop support: - dropZone: $(document), - // The paste target element(s), by the default the complete document. - // Set to null to disable paste support: - pasteZone: $(document), - // The file input field(s), that are listened to for change events. - // If undefined, it is set to the file input fields inside - // of the widget element on plugin initialization. - // Set to null to disable the change listener. - fileInput: undefined, - // By default, the file input field is replaced with a clone after - // each input field change event. This is required for iframe transport - // queues and allows change events to be fired for the same file - // selection, but can be disabled by setting the following option to false: - replaceFileInput: true, - // The parameter name for the file form data (the request argument name). - // If undefined or empty, the name property of the file input field is - // used, or "files[]" if the file input name property is also empty, - // can be a string or an array of strings: - paramName: undefined, - // By default, each file of a selection is uploaded using an individual - // request for XHR type uploads. Set to false to upload file - // selections in one request each: - singleFileUploads: true, - // To limit the number of files uploaded with one XHR request, - // set the following option to an integer greater than 0: - limitMultiFileUploads: undefined, - // Set the following option to true to issue all file upload requests - // in a sequential order: - sequentialUploads: false, - // To limit the number of concurrent uploads, - // set the following option to an integer greater than 0: - limitConcurrentUploads: undefined, - // Set the following option to true to force iframe transport uploads: - forceIframeTransport: false, - // Set the following option to the location of a redirect url on the - // origin server, for cross-domain iframe transport uploads: - redirect: undefined, - // The parameter name for the redirect url, sent as part of the form - // data and set to 'redirect' if this option is empty: - redirectParamName: undefined, - // Set the following option to the location of a postMessage window, - // to enable postMessage transport uploads: - postMessage: undefined, - // By default, XHR file uploads are sent as multipart/form-data. - // The iframe transport is always using multipart/form-data. - // Set to false to enable non-multipart XHR uploads: - multipart: true, - // To upload large files in smaller chunks, set the following option - // to a preferred maximum chunk size. If set to 0, null or undefined, - // or the browser does not support the required Blob API, files will - // be uploaded as a whole. - maxChunkSize: undefined, - // When a non-multipart upload or a chunked multipart upload has been - // aborted, this option can be used to resume the upload by setting - // it to the size of the already uploaded bytes. This option is most - // useful when modifying the options object inside of the "add" or - // "send" callbacks, as the options are cloned for each file upload. - uploadedBytes: undefined, - // By default, failed (abort or error) file uploads are removed from the - // global progress calculation. Set the following option to false to - // prevent recalculating the global progress data: - recalculateProgress: true, - // Interval in milliseconds to calculate and trigger progress events: - progressInterval: 100, - // Interval in milliseconds to calculate progress bitrate: - bitrateInterval: 500, - // By default, uploads are started automatically when adding files: - autoUpload: true, - - // Error and info messages: - messages: { - uploadedBytes: 'Uploaded bytes exceed file size' - }, - - // Translation function, gets the message key to be translated - // and an object with context specific data as arguments: - i18n: function (message, context) { - message = this.messages[message] || message.toString(); - if (context) { - $.each(context, function (key, value) { - message = message.replace('{' + key + '}', value); - }); - } - return message; - }, - - // Additional form data to be sent along with the file uploads can be set - // using this option, which accepts an array of objects with name and - // value properties, a function returning such an array, a FormData - // object (for XHR file uploads), or a simple object. - // The form of the first fileInput is given as parameter to the function: - formData: function (form) { - return form.serializeArray(); - }, - - // The add callback is invoked as soon as files are added to the fileupload - // widget (via file input selection, drag & drop, paste or add API call). - // If the singleFileUploads option is enabled, this callback will be - // called once for each file in the selection for XHR file uploads, else - // once for each file selection. - // - // The upload starts when the submit method is invoked on the data parameter. - // The data object contains a files property holding the added files - // and allows you to override plugin options as well as define ajax settings. - // - // Listeners for this callback can also be bound the following way: - // .bind('fileuploadadd', func); - // - // data.submit() returns a Promise object and allows to attach additional - // handlers using jQuery's Deferred callbacks: - // data.submit().done(func).fail(func).always(func); - add: function (e, data) { - if (data.autoUpload || (data.autoUpload !== false && - $(this).fileupload('option', 'autoUpload'))) { - data.process().done(function () { - data.submit(); - }); - } - }, - - // Other callbacks: - - // Callback for the submit event of each file upload: - // submit: function (e, data) {}, // .bind('fileuploadsubmit', func); - - // Callback for the start of each file upload request: - // send: function (e, data) {}, // .bind('fileuploadsend', func); - - // Callback for successful uploads: - // done: function (e, data) {}, // .bind('fileuploaddone', func); - - // Callback for failed (abort or error) uploads: - // fail: function (e, data) {}, // .bind('fileuploadfail', func); - - // Callback for completed (success, abort or error) requests: - // always: function (e, data) {}, // .bind('fileuploadalways', func); - - // Callback for upload progress events: - // progress: function (e, data) {}, // .bind('fileuploadprogress', func); - - // Callback for global upload progress events: - // progressall: function (e, data) {}, // .bind('fileuploadprogressall', func); - - // Callback for uploads start, equivalent to the global ajaxStart event: - // start: function (e) {}, // .bind('fileuploadstart', func); - - // Callback for uploads stop, equivalent to the global ajaxStop event: - // stop: function (e) {}, // .bind('fileuploadstop', func); - - // Callback for change events of the fileInput(s): - // change: function (e, data) {}, // .bind('fileuploadchange', func); - - // Callback for paste events to the pasteZone(s): - // paste: function (e, data) {}, // .bind('fileuploadpaste', func); - - // Callback for drop events of the dropZone(s): - // drop: function (e, data) {}, // .bind('fileuploaddrop', func); - - // Callback for dragover events of the dropZone(s): - // dragover: function (e) {}, // .bind('fileuploaddragover', func); - - // Callback for the start of each chunk upload request: - // chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func); - - // Callback for successful chunk uploads: - // chunkdone: function (e, data) {}, // .bind('fileuploadchunkdone', func); - - // Callback for failed (abort or error) chunk uploads: - // chunkfail: function (e, data) {}, // .bind('fileuploadchunkfail', func); - - // Callback for completed (success, abort or error) chunk upload requests: - // chunkalways: function (e, data) {}, // .bind('fileuploadchunkalways', func); - - // The plugin options are used as settings object for the ajax calls. - // The following are jQuery ajax settings required for the file uploads: - processData: false, - contentType: false, - cache: false - }, - - // A list of options that require reinitializing event listeners and/or - // special initialization code: - _specialOptions: [ - 'fileInput', - 'dropZone', - 'pasteZone', - 'multipart', - 'forceIframeTransport' - ], - - _blobSlice: $.support.blobSlice && function () { - var slice = this.slice || this.webkitSlice || this.mozSlice; - return slice.apply(this, arguments); - }, - - _BitrateTimer: function () { - this.timestamp = ((Date.now) ? Date.now() : (new Date()).getTime()); - this.loaded = 0; - this.bitrate = 0; - this.getBitrate = function (now, loaded, interval) { - var timeDiff = now - this.timestamp; - if (!this.bitrate || !interval || timeDiff > interval) { - this.bitrate = (loaded - this.loaded) * (1000 / timeDiff) * 8; - this.loaded = loaded; - this.timestamp = now; - } - return this.bitrate; - }; - }, - - _isXHRUpload: function (options) { - return !options.forceIframeTransport && - ((!options.multipart && $.support.xhrFileUpload) || - $.support.xhrFormDataFileUpload); - }, - - _getFormData: function (options) { - var formData; - if (typeof options.formData === 'function') { - return options.formData(options.form); - } - if ($.isArray(options.formData)) { - return options.formData; - } - if ($.type(options.formData) === 'object') { - formData = []; - $.each(options.formData, function (name, value) { - formData.push({name: name, value: value}); - }); - return formData; - } - return []; - }, - - _getTotal: function (files) { - var total = 0; - $.each(files, function (index, file) { - total += file.size || 1; - }); - return total; - }, - - _initProgressObject: function (obj) { - var progress = { - loaded: 0, - total: 0, - bitrate: 0 - }; - if (obj._progress) { - $.extend(obj._progress, progress); - } else { - obj._progress = progress; - } - }, - - _initResponseObject: function (obj) { - var prop; - if (obj._response) { - for (prop in obj._response) { - if (obj._response.hasOwnProperty(prop)) { - delete obj._response[prop]; - } - } - } else { - obj._response = {}; - } - }, - - _onProgress: function (e, data) { - if (e.lengthComputable) { - var now = ((Date.now) ? Date.now() : (new Date()).getTime()), - loaded; - if (data._time && data.progressInterval && - (now - data._time < data.progressInterval) && - e.loaded !== e.total) { - return; - } - data._time = now; - loaded = Math.floor( - e.loaded / e.total * (data.chunkSize || data._progress.total) - ) + (data.uploadedBytes || 0); - // Add the difference from the previously loaded state - // to the global loaded counter: - this._progress.loaded += (loaded - data._progress.loaded); - this._progress.bitrate = this._bitrateTimer.getBitrate( - now, - this._progress.loaded, - data.bitrateInterval - ); - data._progress.loaded = data.loaded = loaded; - data._progress.bitrate = data.bitrate = data._bitrateTimer.getBitrate( - now, - loaded, - data.bitrateInterval - ); - // Trigger a custom progress event with a total data property set - // to the file size(s) of the current upload and a loaded data - // property calculated accordingly: - this._trigger('progress', e, data); - // Trigger a global progress event for all current file uploads, - // including ajax calls queued for sequential file uploads: - this._trigger('progressall', e, this._progress); - } - }, - - _initProgressListener: function (options) { - var that = this, - xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr(); - // Accesss to the native XHR object is required to add event listeners - // for the upload progress event: - if (xhr.upload) { - $(xhr.upload).bind('progress', function (e) { - var oe = e.originalEvent; - // Make sure the progress event properties get copied over: - e.lengthComputable = oe.lengthComputable; - e.loaded = oe.loaded; - e.total = oe.total; - that._onProgress(e, options); - }); - options.xhr = function () { - return xhr; - }; - } - }, - - _isInstanceOf: function (type, obj) { - // Cross-frame instanceof check - return Object.prototype.toString.call(obj) === '[object ' + type + ']'; - }, - - _initXHRData: function (options) { - var that = this, - formData, - file = options.files[0], - // Ignore non-multipart setting if not supported: - multipart = options.multipart || !$.support.xhrFileUpload, - paramName = options.paramName[0]; - options.headers = options.headers || {}; - if (options.contentRange) { - options.headers['Content-Range'] = options.contentRange; - } - if (!multipart || options.blob || !this._isInstanceOf('File', file)) { - options.headers['Content-Disposition'] = 'attachment; filename="' + - encodeURI(file.name) + '"'; - } - if (!multipart) { - options.contentType = file.type; - options.data = options.blob || file; - } else if ($.support.xhrFormDataFileUpload) { - if (options.postMessage) { - // window.postMessage does not allow sending FormData - // objects, so we just add the File/Blob objects to - // the formData array and let the postMessage window - // create the FormData object out of this array: - formData = this._getFormData(options); - if (options.blob) { - formData.push({ - name: paramName, - value: options.blob - }); - } else { - $.each(options.files, function (index, file) { - formData.push({ - name: options.paramName[index] || paramName, - value: file - }); - }); - } - } else { - if (that._isInstanceOf('FormData', options.formData)) { - formData = options.formData; - } else { - formData = new FormData(); - $.each(this._getFormData(options), function (index, field) { - formData.append(field.name, field.value); - }); - } - if (options.blob) { - formData.append(paramName, options.blob, file.name); - } else { - $.each(options.files, function (index, file) { - // This check allows the tests to run with - // dummy objects: - if (that._isInstanceOf('File', file) || - that._isInstanceOf('Blob', file)) { - formData.append( - options.paramName[index] || paramName, - file, - file.name - ); - } - }); - } - } - options.data = formData; - } - // Blob reference is not needed anymore, free memory: - options.blob = null; - }, - - _initIframeSettings: function (options) { - var targetHost = $('').prop('href', options.url).prop('host'); - // Setting the dataType to iframe enables the iframe transport: - options.dataType = 'iframe ' + (options.dataType || ''); - // The iframe transport accepts a serialized array as form data: - options.formData = this._getFormData(options); - // Add redirect url to form data on cross-domain uploads: - if (options.redirect && targetHost && targetHost !== location.host) { - options.formData.push({ - name: options.redirectParamName || 'redirect', - value: options.redirect - }); - } - }, - - _initDataSettings: function (options) { - if (this._isXHRUpload(options)) { - if (!this._chunkedUpload(options, true)) { - if (!options.data) { - this._initXHRData(options); - } - this._initProgressListener(options); - } - if (options.postMessage) { - // Setting the dataType to postmessage enables the - // postMessage transport: - options.dataType = 'postmessage ' + (options.dataType || ''); - } - } else { - this._initIframeSettings(options); - } - }, - - _getParamName: function (options) { - var fileInput = $(options.fileInput), - paramName = options.paramName; - if (!paramName) { - paramName = []; - fileInput.each(function () { - var input = $(this), - name = input.prop('name') || 'file', - i = (input.prop('files') || [1]).length; - while (i) { - paramName.push(name); - i -= 1; - } - }); - if (!paramName.length) { - paramName = [fileInput.prop('name') || 'file']; - } - } else if (!$.isArray(paramName)) { - paramName = [paramName]; - } - return paramName; - }, - - _initFormSettings: function (options) { - // Retrieve missing options from the input field and the - // associated form, if available: - if (!options.form || !options.form.length) { - options.form = $(options.fileInput.prop('form')); - // If the given file input doesn't have an associated form, - // use the default widget file input's form: - if (!options.form.length) { - options.form = $(this.options.fileInput.prop('form')); - } - } - options.paramName = this._getParamName(options); - if (!options.url) { - options.url = options.form.prop('action') || location.href; - } - // The HTTP request method must be "POST" or "PUT": - options.type = (options.type || options.form.prop('method') || '') - .toUpperCase(); - if (options.type !== 'POST' && options.type !== 'PUT' && - options.type !== 'PATCH') { - options.type = 'POST'; - } - if (!options.formAcceptCharset) { - options.formAcceptCharset = options.form.attr('accept-charset'); - } - }, - - _getAJAXSettings: function (data) { - var options = $.extend({}, this.options, data); - this._initFormSettings(options); - this._initDataSettings(options); - return options; - }, - - // jQuery 1.6 doesn't provide .state(), - // while jQuery 1.8+ removed .isRejected() and .isResolved(): - _getDeferredState: function (deferred) { - if (deferred.state) { - return deferred.state(); - } - if (deferred.isResolved()) { - return 'resolved'; - } - if (deferred.isRejected()) { - return 'rejected'; - } - return 'pending'; - }, - - // Maps jqXHR callbacks to the equivalent - // methods of the given Promise object: - _enhancePromise: function (promise) { - promise.success = promise.done; - promise.error = promise.fail; - promise.complete = promise.always; - return promise; - }, - - // Creates and returns a Promise object enhanced with - // the jqXHR methods abort, success, error and complete: - _getXHRPromise: function (resolveOrReject, context, args) { - var dfd = $.Deferred(), - promise = dfd.promise(); - context = context || this.options.context || promise; - if (resolveOrReject === true) { - dfd.resolveWith(context, args); - } else if (resolveOrReject === false) { - dfd.rejectWith(context, args); - } - promise.abort = dfd.promise; - return this._enhancePromise(promise); - }, - - // Adds convenience methods to the data callback argument: - _addConvenienceMethods: function (e, data) { - var that = this, - getPromise = function (data) { - return $.Deferred().resolveWith(that, [data]).promise(); - }; - data.process = function (resolveFunc, rejectFunc) { - if (resolveFunc || rejectFunc) { - data._processQueue = this._processQueue = - (this._processQueue || getPromise(this)) - .pipe(resolveFunc, rejectFunc); - } - return this._processQueue || getPromise(this); - }; - data.submit = function () { - if (this.state() !== 'pending') { - data.jqXHR = this.jqXHR = - (that._trigger('submit', e, this) !== false) && - that._onSend(e, this); - } - return this.jqXHR || that._getXHRPromise(); - }; - data.abort = function () { - if (this.jqXHR) { - return this.jqXHR.abort(); - } - return that._getXHRPromise(); - }; - data.state = function () { - if (this.jqXHR) { - return that._getDeferredState(this.jqXHR); - } - if (this._processQueue) { - return that._getDeferredState(this._processQueue); - } - }; - data.progress = function () { - return this._progress; - }; - data.response = function () { - return this._response; - }; - }, - - // Parses the Range header from the server response - // and returns the uploaded bytes: - _getUploadedBytes: function (jqXHR) { - var range = jqXHR.getResponseHeader('Range'), - parts = range && range.split('-'), - upperBytesPos = parts && parts.length > 1 && - parseInt(parts[1], 10); - return upperBytesPos && upperBytesPos + 1; - }, - - // Uploads a file in multiple, sequential requests - // by splitting the file up in multiple blob chunks. - // If the second parameter is true, only tests if the file - // should be uploaded in chunks, but does not invoke any - // upload requests: - _chunkedUpload: function (options, testOnly) { - options.uploadedBytes = options.uploadedBytes || 0; - var that = this, - file = options.files[0], - fs = file.size, - ub = options.uploadedBytes, - mcs = options.maxChunkSize || fs, - slice = this._blobSlice, - dfd = $.Deferred(), - promise = dfd.promise(), - jqXHR, - upload; - if (!(this._isXHRUpload(options) && slice && (ub || mcs < fs)) || - options.data) { - return false; - } - if (testOnly) { - return true; - } - if (ub >= fs) { - file.error = options.i18n('uploadedBytes'); - return this._getXHRPromise( - false, - options.context, - [null, 'error', file.error] - ); - } - // The chunk upload method: - upload = function () { - // Clone the options object for each chunk upload: - var o = $.extend({}, options), - currentLoaded = o._progress.loaded; - o.blob = slice.call( - file, - ub, - ub + mcs, - file.type - ); - // Store the current chunk size, as the blob itself - // will be dereferenced after data processing: - o.chunkSize = o.blob.size; - // Expose the chunk bytes position range: - o.contentRange = 'bytes ' + ub + '-' + - (ub + o.chunkSize - 1) + '/' + fs; - // Process the upload data (the blob and potential form data): - that._initXHRData(o); - // Add progress listeners for this chunk upload: - that._initProgressListener(o); - jqXHR = ((that._trigger('chunksend', null, o) !== false && $.ajax(o)) || - that._getXHRPromise(false, o.context)) - .done(function (result, textStatus, jqXHR) { - ub = that._getUploadedBytes(jqXHR) || - (ub + o.chunkSize); - // Create a progress event if no final progress event - // with loaded equaling total has been triggered - // for this chunk: - if (currentLoaded + o.chunkSize - o._progress.loaded) { - that._onProgress($.Event('progress', { - lengthComputable: true, - loaded: ub - o.uploadedBytes, - total: ub - o.uploadedBytes - }), o); - } - options.uploadedBytes = o.uploadedBytes = ub; - o.result = result; - o.textStatus = textStatus; - o.jqXHR = jqXHR; - that._trigger('chunkdone', null, o); - that._trigger('chunkalways', null, o); - if (ub < fs) { - // File upload not yet complete, - // continue with the next chunk: - upload(); - } else { - dfd.resolveWith( - o.context, - [result, textStatus, jqXHR] - ); - } - }) - .fail(function (jqXHR, textStatus, errorThrown) { - o.jqXHR = jqXHR; - o.textStatus = textStatus; - o.errorThrown = errorThrown; - that._trigger('chunkfail', null, o); - that._trigger('chunkalways', null, o); - dfd.rejectWith( - o.context, - [jqXHR, textStatus, errorThrown] - ); - }); - }; - this._enhancePromise(promise); - promise.abort = function () { - return jqXHR.abort(); - }; - upload(); - return promise; - }, - - _beforeSend: function (e, data) { - if (this._active === 0) { - // the start callback is triggered when an upload starts - // and no other uploads are currently running, - // equivalent to the global ajaxStart event: - this._trigger('start'); - // Set timer for global bitrate progress calculation: - this._bitrateTimer = new this._BitrateTimer(); - // Reset the global progress values: - this._progress.loaded = this._progress.total = 0; - this._progress.bitrate = 0; - } - // Make sure the container objects for the .response() and - // .progress() methods on the data object are available - // and reset to their initial state: - this._initResponseObject(data); - this._initProgressObject(data); - data._progress.loaded = data.loaded = data.uploadedBytes || 0; - data._progress.total = data.total = this._getTotal(data.files) || 1; - data._progress.bitrate = data.bitrate = 0; - this._active += 1; - // Initialize the global progress values: - this._progress.loaded += data.loaded; - this._progress.total += data.total; - }, - - _onDone: function (result, textStatus, jqXHR, options) { - var total = options._progress.total, - response = options._response; - if (options._progress.loaded < total) { - // Create a progress event if no final progress event - // with loaded equaling total has been triggered: - this._onProgress($.Event('progress', { - lengthComputable: true, - loaded: total, - total: total - }), options); - } - response.result = options.result = result; - response.textStatus = options.textStatus = textStatus; - response.jqXHR = options.jqXHR = jqXHR; - this._trigger('done', null, options); - }, - - _onFail: function (jqXHR, textStatus, errorThrown, options) { - var response = options._response; - if (options.recalculateProgress) { - // Remove the failed (error or abort) file upload from - // the global progress calculation: - this._progress.loaded -= options._progress.loaded; - this._progress.total -= options._progress.total; - } - response.jqXHR = options.jqXHR = jqXHR; - response.textStatus = options.textStatus = textStatus; - response.errorThrown = options.errorThrown = errorThrown; - if ('file' in response.jqXHR.responseJSON) { - response.errorThrown = options.errorThrown = response.jqXHR.responseJSON.file.join(", "); - } - this._trigger('fail', null, options); - }, - - _onAlways: function (jqXHRorResult, textStatus, jqXHRorError, options) { - // jqXHRorResult, textStatus and jqXHRorError are added to the - // options object via done and fail callbacks - this._trigger('always', null, options); - }, - - _onSend: function (e, data) { - if (!data.submit) { - this._addConvenienceMethods(e, data); - } - var that = this, - jqXHR, - aborted, - slot, - pipe, - options = that._getAJAXSettings(data), - send = function () { - that._sending += 1; - // Set timer for bitrate progress calculation: - options._bitrateTimer = new that._BitrateTimer(); - jqXHR = jqXHR || ( - ((aborted || that._trigger('send', e, options) === false) && - that._getXHRPromise(false, options.context, aborted)) || - that._chunkedUpload(options) || $.ajax(options) - ).done(function (result, textStatus, jqXHR) { - that._onDone(result, textStatus, jqXHR, options); - }).fail(function (jqXHR, textStatus, errorThrown) { - that._onFail(jqXHR, textStatus, errorThrown, options); - }).always(function (jqXHRorResult, textStatus, jqXHRorError) { - that._onAlways( - jqXHRorResult, - textStatus, - jqXHRorError, - options - ); - that._sending -= 1; - that._active -= 1; - if (options.limitConcurrentUploads && - options.limitConcurrentUploads > that._sending) { - // Start the next queued upload, - // that has not been aborted: - var nextSlot = that._slots.shift(); - while (nextSlot) { - if (that._getDeferredState(nextSlot) === 'pending') { - nextSlot.resolve(); - break; - } - nextSlot = that._slots.shift(); - } - } - if (that._active === 0) { - // The stop callback is triggered when all uploads have - // been completed, equivalent to the global ajaxStop event: - that._trigger('stop'); - } - }); - return jqXHR; - }; - this._beforeSend(e, options); - if (this.options.sequentialUploads || - (this.options.limitConcurrentUploads && - this.options.limitConcurrentUploads <= this._sending)) { - if (this.options.limitConcurrentUploads > 1) { - slot = $.Deferred(); - this._slots.push(slot); - pipe = slot.pipe(send); - } else { - this._sequence = this._sequence.pipe(send, send); - pipe = this._sequence; - } - // Return the piped Promise object, enhanced with an abort method, - // which is delegated to the jqXHR object of the current upload, - // and jqXHR callbacks mapped to the equivalent Promise methods: - pipe.abort = function () { - aborted = [undefined, 'abort', 'abort']; - if (!jqXHR) { - if (slot) { - slot.rejectWith(options.context, aborted); - } - return send(); - } - return jqXHR.abort(); - }; - return this._enhancePromise(pipe); - } - return send(); - }, - - _onAdd: function (e, data) { - var that = this, - result = true, - options = $.extend({}, this.options, data), - limit = options.limitMultiFileUploads, - paramName = this._getParamName(options), - paramNameSet, - paramNameSlice, - fileSet, - i; - if (!(options.singleFileUploads || limit) || - !this._isXHRUpload(options)) { - fileSet = [data.files]; - paramNameSet = [paramName]; - } else if (!options.singleFileUploads && limit) { - fileSet = []; - paramNameSet = []; - for (i = 0; i < data.files.length; i += limit) { - fileSet.push(data.files.slice(i, i + limit)); - paramNameSlice = paramName.slice(i, i + limit); - if (!paramNameSlice.length) { - paramNameSlice = paramName; - } - paramNameSet.push(paramNameSlice); - } - } else { - paramNameSet = paramName; - } - data.originalFiles = data.files; - $.each(fileSet || data.files, function (index, element) { - var newData = $.extend({}, data); - newData.files = fileSet ? element : [element]; - newData.paramName = paramNameSet[index]; - that._initResponseObject(newData); - that._initProgressObject(newData); - that._addConvenienceMethods(e, newData); - result = that._trigger('add', e, newData); - return result; - }); - return result; - }, - - _replaceFileInput: function (input) { - var inputClone = input.clone(true); - $('
').append(inputClone)[0].reset(); - // Detaching allows to insert the fileInput on another form - // without loosing the file input value: - input.after(inputClone).detach(); - // Avoid memory leaks with the detached file input: - $.cleanData(input.unbind('remove')); - // Replace the original file input element in the fileInput - // elements set with the clone, which has been copied including - // event handlers: - this.options.fileInput = this.options.fileInput.map(function (i, el) { - if (el === input[0]) { - return inputClone[0]; - } - return el; - }); - // If the widget has been initialized on the file input itself, - // override this.element with the file input clone: - if (input[0] === this.element[0]) { - this.element = inputClone; - } - }, - - _handleFileTreeEntry: function (entry, path) { - var that = this, - dfd = $.Deferred(), - errorHandler = function (e) { - if (e && !e.entry) { - e.entry = entry; - } - // Since $.when returns immediately if one - // Deferred is rejected, we use resolve instead. - // This allows valid files and invalid items - // to be returned together in one set: - dfd.resolve([e]); - }, - dirReader; - path = path || ''; - if (entry.isFile) { - if (entry._file) { - // Workaround for Chrome bug #149735 - entry._file.relativePath = path; - dfd.resolve(entry._file); - } else { - entry.file(function (file) { - file.relativePath = path; - dfd.resolve(file); - }, errorHandler); - } - } else if (entry.isDirectory) { - dirReader = entry.createReader(); - dirReader.readEntries(function (entries) { - that._handleFileTreeEntries( - entries, - path + entry.name + '/' - ).done(function (files) { - dfd.resolve(files); - }).fail(errorHandler); - }, errorHandler); - } else { - // Return an empy list for file system items - // other than files or directories: - dfd.resolve([]); - } - return dfd.promise(); - }, - - _handleFileTreeEntries: function (entries, path) { - var that = this; - return $.when.apply( - $, - $.map(entries, function (entry) { - return that._handleFileTreeEntry(entry, path); - }) - ).pipe(function () { - return Array.prototype.concat.apply( - [], - arguments - ); - }); - }, - - _getDroppedFiles: function (dataTransfer) { - dataTransfer = dataTransfer || {}; - var items = dataTransfer.items; - if (items && items.length && (items[0].webkitGetAsEntry || - items[0].getAsEntry)) { - return this._handleFileTreeEntries( - $.map(items, function (item) { - var entry; - if (item.webkitGetAsEntry) { - entry = item.webkitGetAsEntry(); - if (entry) { - // Workaround for Chrome bug #149735: - entry._file = item.getAsFile(); - } - return entry; - } - return item.getAsEntry(); - }) - ); - } - return $.Deferred().resolve( - $.makeArray(dataTransfer.files) - ).promise(); - }, - - _getSingleFileInputFiles: function (fileInput) { - fileInput = $(fileInput); - var entries = fileInput.prop('webkitEntries') || - fileInput.prop('entries'), - files, - value; - if (entries && entries.length) { - return this._handleFileTreeEntries(entries); - } - files = $.makeArray(fileInput.prop('files')); - if (!files.length) { - value = fileInput.prop('value'); - if (!value) { - return $.Deferred().resolve([]).promise(); - } - // If the files property is not available, the browser does not - // support the File API and we add a pseudo File object with - // the input value as name with path information removed: - files = [{name: value.replace(/^.*\\/, '')}]; - } else if (files[0].name === undefined && files[0].fileName) { - // File normalization for Safari 4 and Firefox 3: - $.each(files, function (index, file) { - file.name = file.fileName; - file.size = file.fileSize; - }); - } - return $.Deferred().resolve(files).promise(); - }, - - _getFileInputFiles: function (fileInput) { - if (!(fileInput instanceof $) || fileInput.length === 1) { - return this._getSingleFileInputFiles(fileInput); - } - return $.when.apply( - $, - $.map(fileInput, this._getSingleFileInputFiles) - ).pipe(function () { - return Array.prototype.concat.apply( - [], - arguments - ); - }); - }, - - _onChange: function (e) { - var that = this, - data = { - fileInput: $(e.target), - form: $(e.target.form) - }; - this._getFileInputFiles(data.fileInput).always(function (files) { - data.files = files; - if (that.options.replaceFileInput) { - that._replaceFileInput(data.fileInput); - } - if (that._trigger('change', e, data) !== false) { - that._onAdd(e, data); - } - }); - }, - - _onPaste: function (e) { - var items = e.originalEvent && e.originalEvent.clipboardData && - e.originalEvent.clipboardData.items, - data = {files: []}; - if (items && items.length) { - $.each(items, function (index, item) { - var file = item.getAsFile && item.getAsFile(); - if (file) { - data.files.push(file); - } - }); - if (this._trigger('paste', e, data) === false || - this._onAdd(e, data) === false) { - return false; - } - } - }, - - _onDrop: function (e) { - e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; - var that = this, - dataTransfer = e.dataTransfer, - data = {}; - if (dataTransfer && dataTransfer.files && dataTransfer.files.length) { - e.preventDefault(); - this._getDroppedFiles(dataTransfer).always(function (files) { - data.files = files; - if (that._trigger('drop', e, data) !== false) { - that._onAdd(e, data); - } - }); - } - }, - - _onDragOver: function (e) { - e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; - var dataTransfer = e.dataTransfer; - if (dataTransfer) { - if (this._trigger('dragover', e) === false) { - return false; - } - if ($.inArray('Files', dataTransfer.types) !== -1) { - dataTransfer.dropEffect = 'copy'; - e.preventDefault(); - } - } - }, - - _initEventHandlers: function () { - if (this._isXHRUpload(this.options)) { - this._on(this.options.dropZone, { - dragover: this._onDragOver, - drop: this._onDrop - }); - this._on(this.options.pasteZone, { - paste: this._onPaste - }); - } - if ($.support.fileInput) { - this._on(this.options.fileInput, { - change: this._onChange - }); - } - }, - - _destroyEventHandlers: function () { - this._off(this.options.dropZone, 'dragover drop'); - this._off(this.options.pasteZone, 'paste'); - this._off(this.options.fileInput, 'change'); - }, - - _setOption: function (key, value) { - var reinit = $.inArray(key, this._specialOptions) !== -1; - if (reinit) { - this._destroyEventHandlers(); - } - this._super(key, value); - if (reinit) { - this._initSpecialOptions(); - this._initEventHandlers(); - } - }, - - _initSpecialOptions: function () { - var options = this.options; - if (options.fileInput === undefined) { - options.fileInput = this.element.is('input[type="file"]') ? - this.element : this.element.find('input[type="file"]'); - } else if (!(options.fileInput instanceof $)) { - options.fileInput = $(options.fileInput); - } - if (!(options.dropZone instanceof $)) { - options.dropZone = $(options.dropZone); - } - if (!(options.pasteZone instanceof $)) { - options.pasteZone = $(options.pasteZone); - } - }, - - _getRegExp: function (str) { - var parts = str.split('/'), - modifiers = parts.pop(); - parts.shift(); - return new RegExp(parts.join('/'), modifiers); - }, - - _isRegExpOption: function (key, value) { - return key !== 'url' && $.type(value) === 'string' && - /^\/.*\/[igm]{0,3}$/.test(value); - }, - - _initDataAttributes: function () { - var that = this, - options = this.options; - // Initialize options set via HTML5 data-attributes: - $.each( - $(this.element[0].cloneNode(false)).data(), - function (key, value) { - if (that._isRegExpOption(key, value)) { - value = that._getRegExp(value); - } - options[key] = value; - } - ); - }, - - _create: function () { - this._initDataAttributes(); - this._initSpecialOptions(); - this._slots = []; - this._sequence = this._getXHRPromise(true); - this._sending = this._active = 0; - this._initProgressObject(this); - this._initEventHandlers(); - }, - - // This method is exposed to the widget API and allows to query - // the number of active uploads: - active: function () { - return this._active; - }, - - // This method is exposed to the widget API and allows to query - // the widget upload progress. - // It returns an object with loaded, total and bitrate properties - // for the running uploads: - progress: function () { - return this._progress; - }, - - // This method is exposed to the widget API and allows adding files - // using the fileupload API. The data parameter accepts an object which - // must have a files property and can contain additional options: - // .fileupload('add', {files: filesList}); - add: function (data) { - var that = this; - if (!data || this.options.disabled) { - return; - } - if (data.fileInput && !data.files) { - this._getFileInputFiles(data.fileInput).always(function (files) { - data.files = files; - that._onAdd(null, data); - }); - } else { - data.files = $.makeArray(data.files); - this._onAdd(null, data); - } - }, - - // This method is exposed to the widget API and allows sending files - // using the fileupload API. The data parameter accepts an object which - // must have a files or fileInput property and can contain additional options: - // .fileupload('send', {files: filesList}); - // The method returns a Promise object for the file upload call. - send: function (data) { - if (data && !this.options.disabled) { - if (data.fileInput && !data.files) { - var that = this, - dfd = $.Deferred(), - promise = dfd.promise(), - jqXHR, - aborted; - promise.abort = function () { - aborted = true; - if (jqXHR) { - return jqXHR.abort(); - } - dfd.reject(null, 'abort', 'abort'); - return promise; - }; - this._getFileInputFiles(data.fileInput).always( - function (files) { - if (aborted) { - return; - } - if (!files.length) { - dfd.reject(); - return; - } - data.files = files; - jqXHR = that._onSend(null, data).then( - function (result, textStatus, jqXHR) { - dfd.resolve(result, textStatus, jqXHR); - }, - function (jqXHR, textStatus, errorThrown) { - dfd.reject(jqXHR, textStatus, errorThrown); - } - ); - } - ); - return this._enhancePromise(promise); - } - data.files = $.makeArray(data.files); - if (data.files.length) { - return this._onSend(null, data); - } - } - return this._getXHRPromise(false, data && data.context); - } - - }); - -})); diff --git a/static/file_upload/js/jquery.iframe-transport.js b/static/file_upload/js/jquery.iframe-transport.js deleted file mode 100644 index 073c5fbe..00000000 --- a/static/file_upload/js/jquery.iframe-transport.js +++ /dev/null @@ -1,205 +0,0 @@ -/* - * jQuery Iframe Transport Plugin 1.7 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint unparam: true, nomen: true */ -/*global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - // Helper variable to create unique names for the transport iframes: - var counter = 0; - - // The iframe transport accepts three additional options: - // options.fileInput: a jQuery collection of file input fields - // options.paramName: the parameter name for the file form data, - // overrides the name property of the file input field(s), - // can be a string or an array of strings. - // options.formData: an array of objects with name and value properties, - // equivalent to the return data of .serializeArray(), e.g.: - // [{name: 'a', value: 1}, {name: 'b', value: 2}] - $.ajaxTransport('iframe', function (options) { - if (options.async) { - var form, - iframe, - addParamChar; - return { - send: function (_, completeCallback) { - form = $('
'); - form.attr('accept-charset', options.formAcceptCharset); - addParamChar = /\?/.test(options.url) ? '&' : '?'; - // XDomainRequest only supports GET and POST: - if (options.type === 'DELETE') { - options.url = options.url + addParamChar + '_method=DELETE'; - options.type = 'POST'; - } else if (options.type === 'PUT') { - options.url = options.url + addParamChar + '_method=PUT'; - options.type = 'POST'; - } else if (options.type === 'PATCH') { - options.url = options.url + addParamChar + '_method=PATCH'; - options.type = 'POST'; - } - // javascript:false as initial iframe src - // prevents warning popups on HTTPS in IE6. - // IE versions below IE8 cannot set the name property of - // elements that have already been added to the DOM, - // so we set the name along with the iframe HTML markup: - counter += 1; - iframe = $( - '' - ).bind('load', function () { - var fileInputClones, - paramNames = $.isArray(options.paramName) ? - options.paramName : [options.paramName]; - iframe - .unbind('load') - .bind('load', function () { - var response; - // Wrap in a try/catch block to catch exceptions thrown - // when trying to access cross-domain iframe contents: - try { - response = iframe.contents(); - // Google Chrome and Firefox do not throw an - // exception when calling iframe.contents() on - // cross-domain requests, so we unify the response: - if (!response.length || !response[0].firstChild) { - throw new Error(); - } - } catch (e) { - response = undefined; - } - // The complete callback returns the - // iframe content document as response object: - completeCallback( - 200, - 'success', - {'iframe': response} - ); - // Fix for IE endless progress bar activity bug - // (happens on form submits to iframe targets): - $('') - .appendTo(form); - window.setTimeout(function () { - // Removing the form in a setTimeout call - // allows Chrome's developer tools to display - // the response result - form.remove(); - }, 0); - }); - form - .prop('target', iframe.prop('name')) - .prop('action', options.url) - .prop('method', options.type); - if (options.formData) { - $.each(options.formData, function (index, field) { - $('') - .prop('name', field.name) - .val(field.value) - .appendTo(form); - }); - } - if (options.fileInput && options.fileInput.length && - options.type === 'POST') { - fileInputClones = options.fileInput.clone(); - // Insert a clone for each file input field: - options.fileInput.after(function (index) { - return fileInputClones[index]; - }); - if (options.paramName) { - options.fileInput.each(function (index) { - $(this).prop( - 'name', - paramNames[index] || options.paramName - ); - }); - } - // Appending the file input fields to the hidden form - // removes them from their original location: - form - .append(options.fileInput) - .prop('enctype', 'multipart/form-data') - // enctype must be set as encoding for IE: - .prop('encoding', 'multipart/form-data'); - } - form.submit(); - // Insert the file input fields at their original location - // by replacing the clones with the originals: - if (fileInputClones && fileInputClones.length) { - options.fileInput.each(function (index, input) { - var clone = $(fileInputClones[index]); - $(input).prop('name', clone.prop('name')); - clone.replaceWith(input); - }); - } - }); - form.append(iframe).appendTo(document.body); - }, - abort: function () { - if (iframe) { - // javascript:false as iframe src aborts the request - // and prevents warning popups on HTTPS in IE6. - // concat is used to avoid the "Script URL" JSLint error: - iframe - .unbind('load') - .prop('src', 'javascript'.concat(':false;')); - } - if (form) { - form.remove(); - } - } - }; - } - }); - - // The iframe transport returns the iframe content document as response. - // The following adds converters from iframe to text, json, html, xml - // and script. - // Please note that the Content-Type for JSON responses has to be text/plain - // or text/html, if the browser doesn't include application/json in the - // Accept header, else IE will show a download dialog. - // The Content-Type for XML responses on the other hand has to be always - // application/xml or text/xml, so IE properly parses the XML response. - // See also - // https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation - $.ajaxSetup({ - converters: { - 'iframe text': function (iframe) { - return iframe && $(iframe[0].body).text(); - }, - 'iframe json': function (iframe) { - return iframe && $.parseJSON($(iframe[0].body).text()); - }, - 'iframe html': function (iframe) { - return iframe && $(iframe[0].body).html(); - }, - 'iframe xml': function (iframe) { - var xmlDoc = iframe && iframe[0]; - return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc : - $.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) || - $(xmlDoc.body).html()); - }, - 'iframe script': function (iframe) { - return iframe && $.globalEval($(iframe[0].body).text()); - } - } - }); - -})); diff --git a/static/file_upload/js/jquery.ui.widget.js b/static/file_upload/js/jquery.ui.widget.js deleted file mode 100644 index 9da8673a..00000000 --- a/static/file_upload/js/jquery.ui.widget.js +++ /dev/null @@ -1,282 +0,0 @@ -/* - * jQuery UI Widget 1.8.18+amd - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Widget - */ - -(function (factory) { - if (typeof define === "function" && define.amd) { - // Register as an anonymous AMD module: - define(["jquery"], factory); - } else { - // Browser globals: - factory(jQuery); - } -}(function( $, undefined ) { - -// jQuery 1.4+ -if ( $.cleanData ) { - var _cleanData = $.cleanData; - $.cleanData = function( elems ) { - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - try { - $( elem ).triggerHandler( "remove" ); - // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} - } - _cleanData( elems ); - }; -} else { - var _remove = $.fn.remove; - $.fn.remove = function( selector, keepData ) { - return this.each(function() { - if ( !keepData ) { - if ( !selector || $.filter( selector, [ this ] ).length ) { - $( "*", this ).add( [ this ] ).each(function() { - try { - $( this ).triggerHandler( "remove" ); - // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} - }); - } - } - return _remove.call( $(this), selector, keepData ); - }); - }; -} - -$.widget = function( name, base, prototype ) { - var namespace = name.split( "." )[ 0 ], - fullName; - name = name.split( "." )[ 1 ]; - fullName = namespace + "-" + name; - - if ( !prototype ) { - prototype = base; - base = $.Widget; - } - - // create selector for plugin - $.expr[ ":" ][ fullName ] = function( elem ) { - return !!$.data( elem, name ); - }; - - $[ namespace ] = $[ namespace ] || {}; - $[ namespace ][ name ] = function( options, element ) { - // allow instantiation without initializing for simple inheritance - if ( arguments.length ) { - this._createWidget( options, element ); - } - }; - - var basePrototype = new base(); - // we need to make the options hash a property directly on the new instance - // otherwise we'll modify the options hash on the prototype that we're - // inheriting from -// $.each( basePrototype, function( key, val ) { -// if ( $.isPlainObject(val) ) { -// basePrototype[ key ] = $.extend( {}, val ); -// } -// }); - basePrototype.options = $.extend( true, {}, basePrototype.options ); - $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { - namespace: namespace, - widgetName: name, - widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name, - widgetBaseClass: fullName - }, prototype ); - - $.widget.bridge( name, $[ namespace ][ name ] ); -}; - -$.widget.bridge = function( name, object ) { - $.fn[ name ] = function( options ) { - var isMethodCall = typeof options === "string", - args = Array.prototype.slice.call( arguments, 1 ), - returnValue = this; - - // allow multiple hashes to be passed on init - options = !isMethodCall && args.length ? - $.extend.apply( null, [ true, options ].concat(args) ) : - options; - - // prevent calls to internal methods - if ( isMethodCall && options.charAt( 0 ) === "_" ) { - return returnValue; - } - - if ( isMethodCall ) { - this.each(function() { - var instance = $.data( this, name ), - methodValue = instance && $.isFunction( instance[options] ) ? - instance[ options ].apply( instance, args ) : - instance; - // TODO: add this back in 1.9 and use $.error() (see #5972) -// if ( !instance ) { -// throw "cannot call methods on " + name + " prior to initialization; " + -// "attempted to call method '" + options + "'"; -// } -// if ( !$.isFunction( instance[options] ) ) { -// throw "no such method '" + options + "' for " + name + " widget instance"; -// } -// var methodValue = instance[ options ].apply( instance, args ); - if ( methodValue !== instance && methodValue !== undefined ) { - returnValue = methodValue; - return false; - } - }); - } else { - this.each(function() { - var instance = $.data( this, name ); - if ( instance ) { - instance.option( options || {} )._init(); - } else { - $.data( this, name, new object( options, this ) ); - } - }); - } - - return returnValue; - }; -}; - -$.Widget = function( options, element ) { - // allow instantiation without initializing for simple inheritance - if ( arguments.length ) { - this._createWidget( options, element ); - } -}; - -$.Widget.prototype = { - widgetName: "widget", - widgetEventPrefix: "", - options: { - disabled: false - }, - _createWidget: function( options, element ) { - // $.widget.bridge stores the plugin instance, but we do it anyway - // so that it's stored even before the _create function runs - $.data( element, this.widgetName, this ); - this.element = $( element ); - this.options = $.extend( true, {}, - this.options, - this._getCreateOptions(), - options ); - - var self = this; - this.element.bind( "remove." + this.widgetName, function() { - self.destroy(); - }); - - this._create(); - this._trigger( "create" ); - this._init(); - }, - _getCreateOptions: function() { - return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; - }, - _create: function() {}, - _init: function() {}, - - destroy: function() { - this.element - .unbind( "." + this.widgetName ) - .removeData( this.widgetName ); - this.widget() - .unbind( "." + this.widgetName ) - .removeAttr( "aria-disabled" ) - .removeClass( - this.widgetBaseClass + "-disabled " + - "ui-state-disabled" ); - }, - - widget: function() { - return this.element; - }, - - option: function( key, value ) { - var options = key; - - if ( arguments.length === 0 ) { - // don't return a reference to the internal hash - return $.extend( {}, this.options ); - } - - if (typeof key === "string" ) { - if ( value === undefined ) { - return this.options[ key ]; - } - options = {}; - options[ key ] = value; - } - - this._setOptions( options ); - - return this; - }, - _setOptions: function( options ) { - var self = this; - $.each( options, function( key, value ) { - self._setOption( key, value ); - }); - - return this; - }, - _setOption: function( key, value ) { - this.options[ key ] = value; - - if ( key === "disabled" ) { - this.widget() - [ value ? "addClass" : "removeClass"]( - this.widgetBaseClass + "-disabled" + " " + - "ui-state-disabled" ) - .attr( "aria-disabled", value ); - } - - return this; - }, - - enable: function() { - return this._setOption( "disabled", false ); - }, - disable: function() { - return this._setOption( "disabled", true ); - }, - - _trigger: function( type, event, data ) { - var prop, orig, - callback = this.options[ type ]; - - data = data || {}; - event = $.Event( event ); - event.type = ( type === this.widgetEventPrefix ? - type : - this.widgetEventPrefix + type ).toLowerCase(); - // the original event may come from any element - // so we need to reset the target on the new event - event.target = this.element[ 0 ]; - - // copy original event properties over to the new event - orig = event.originalEvent; - if ( orig ) { - for ( prop in orig ) { - if ( !( prop in event ) ) { - event[ prop ] = orig[ prop ]; - } - } - } - - this.element.trigger( event, data ); - - return !( $.isFunction(callback) && - callback.call( this.element[0], event, data ) === false || - event.isDefaultPrevented() ); - } -}; - -})); diff --git a/static/file_upload/js/load-image.min.js b/static/file_upload/js/load-image.min.js deleted file mode 100644 index 8f04e851..00000000 --- a/static/file_upload/js/load-image.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(e){"use strict";var t=function(e,i,a){var n,r,o=document.createElement("img");if(o.onerror=i,o.onload=function(){!r||a&&a.noRevoke||t.revokeObjectURL(r),i&&i(t.scale(o,a))},t.isInstanceOf("Blob",e)||t.isInstanceOf("File",e))n=r=t.createObjectURL(e),o._type=e.type;else{if("string"!=typeof e)return!1;n=e,a&&a.crossOrigin&&(o.crossOrigin=a.crossOrigin)}return n?(o.src=n,o):t.readFile(e,function(e){var t=e.target;t&&t.result?o.src=t.result:i&&i(e)})},i=window.createObjectURL&&window||window.URL&&URL.revokeObjectURL&&URL||window.webkitURL&&webkitURL;t.isInstanceOf=function(e,t){return Object.prototype.toString.call(t)==="[object "+e+"]"},t.transformCoordinates=function(){},t.getTransformedOptions=function(e){return e},t.renderImageToCanvas=function(e,t,i,a,n,r,o,s,d,l){return e.getContext("2d").drawImage(t,i,a,n,r,o,s,d,l),e},t.hasCanvasOption=function(e){return e.canvas||e.crop},t.scale=function(e,i){i=i||{};var a,n,r,o,s,d,l,c,u,g=document.createElement("canvas"),f=e.getContext||t.hasCanvasOption(i)&&g.getContext,h=e.naturalWidth||e.width,m=e.naturalHeight||e.height,p=h,S=m,b=function(){var e=Math.max((r||p)/p,(o||S)/S);e>1&&(p=Math.ceil(p*e),S=Math.ceil(S*e))},v=function(){var e=Math.min((a||p)/p,(n||S)/S);1>e&&(p=Math.ceil(p*e),S=Math.ceil(S*e))};return f&&(i=t.getTransformedOptions(i),l=i.left||0,c=i.top||0,i.sourceWidth?(s=i.sourceWidth,void 0!==i.right&&void 0===i.left&&(l=h-s-i.right)):s=h-l-(i.right||0),i.sourceHeight?(d=i.sourceHeight,void 0!==i.bottom&&void 0===i.top&&(c=m-d-i.bottom)):d=m-c-(i.bottom||0),p=s,S=d),a=i.maxWidth,n=i.maxHeight,r=i.minWidth,o=i.minHeight,f&&a&&n&&i.crop?(p=a,S=n,u=s/d-a/n,0>u?(d=n*s/a,void 0===i.top&&void 0===i.bottom&&(c=(m-d)/2)):u>0&&(s=a*d/n,void 0===i.left&&void 0===i.right&&(l=(h-s)/2))):((i.contain||i.cover)&&(r=a=a||r,o=n=n||o),i.cover?(v(),b()):(b(),v())),f?(g.width=p,g.height=S,t.transformCoordinates(g,i),t.renderImageToCanvas(g,e,l,c,s,d,0,0,p,S)):(e.width=p,e.height=S,e)},t.createObjectURL=function(e){return i?i.createObjectURL(e):!1},t.revokeObjectURL=function(e){return i?i.revokeObjectURL(e):!1},t.readFile=function(e,t,i){if(window.FileReader){var a=new FileReader;if(a.onload=a.onerror=t,i=i||"readAsDataURL",a[i])return a[i](e),a}return!1},"function"==typeof define&&define.amd?define(function(){return t}):e.loadImage=t})(this),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";if(window.navigator&&window.navigator.platform&&/iP(hone|od|ad)/.test(window.navigator.platform)){var t=e.renderImageToCanvas;e.detectSubsampling=function(e){var t,i;return e.width*e.height>1048576?(t=document.createElement("canvas"),t.width=t.height=1,i=t.getContext("2d"),i.drawImage(e,-e.width+1,0),0===i.getImageData(0,0,1,1).data[3]):!1},e.detectVerticalSquash=function(e,t){var i,a,n,r,o,s=e.naturalHeight||e.height,d=document.createElement("canvas"),l=d.getContext("2d");for(t&&(s/=2),d.width=1,d.height=s,l.drawImage(e,0,0),i=l.getImageData(0,0,1,s).data,a=0,n=s,r=s;r>a;)o=i[4*(r-1)+3],0===o?n=r:a=r,r=n+a>>1;return r/s||1},e.renderImageToCanvas=function(i,a,n,r,o,s,d,l,c,u){if("image/jpeg"===a._type){var g,f,h,m,p=i.getContext("2d"),S=document.createElement("canvas"),b=1024,v=S.getContext("2d");if(S.width=b,S.height=b,p.save(),g=e.detectSubsampling(a),g&&(n/=2,r/=2,o/=2,s/=2),f=e.detectVerticalSquash(a,g),g||1!==f){for(r*=f,c=Math.ceil(b*c/o),u=Math.ceil(b*u/s/f),l=0,m=0;s>m;){for(d=0,h=0;o>h;)v.clearRect(0,0,b,b),v.drawImage(a,n,r,o,s,-h,-m,o,s),p.drawImage(S,0,0,b,b,d,l,c,u),h+=b,d+=c;m+=b,l+=u}return p.restore(),i}}return t(i,a,n,r,o,s,d,l,c,u)}}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";var t=e.hasCanvasOption;e.hasCanvasOption=function(e){return t(e)||e.orientation},e.transformCoordinates=function(e,t){var i=e.getContext("2d"),a=e.width,n=e.height,r=t.orientation;if(r)switch(r>4&&(e.width=n,e.height=a),r){case 2:i.translate(a,0),i.scale(-1,1);break;case 3:i.translate(a,n),i.rotate(Math.PI);break;case 4:i.translate(0,n),i.scale(1,-1);break;case 5:i.rotate(.5*Math.PI),i.scale(1,-1);break;case 6:i.rotate(.5*Math.PI),i.translate(0,-n);break;case 7:i.rotate(.5*Math.PI),i.translate(a,-n),i.scale(-1,1);break;case 8:i.rotate(-.5*Math.PI),i.translate(-a,0)}},e.getTransformedOptions=function(e){if(!e.orientation||1===e.orientation)return e;var t,i={};for(t in e)e.hasOwnProperty(t)&&(i[t]=e[t]);switch(e.orientation){case 2:i.left=e.right,i.right=e.left;break;case 3:i.left=e.right,i.top=e.bottom,i.right=e.left,i.bottom=e.top;break;case 4:i.top=e.bottom,i.bottom=e.top;break;case 5:i.left=e.top,i.top=e.left,i.right=e.bottom,i.bottom=e.right;break;case 6:i.left=e.top,i.top=e.right,i.right=e.bottom,i.bottom=e.left;break;case 7:i.left=e.bottom,i.top=e.right,i.right=e.top,i.bottom=e.left;break;case 8:i.left=e.bottom,i.top=e.left,i.right=e.top,i.bottom=e.right}return e.orientation>4&&(i.maxWidth=e.maxHeight,i.maxHeight=e.maxWidth,i.minWidth=e.minHeight,i.minHeight=e.minWidth,i.sourceWidth=e.sourceHeight,i.sourceHeight=e.sourceWidth),i}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";var t=window.Blob&&(Blob.prototype.slice||Blob.prototype.webkitSlice||Blob.prototype.mozSlice);e.blobSlice=t&&function(){var e=this.slice||this.webkitSlice||this.mozSlice;return e.apply(this,arguments)},e.metaDataParsers={jpeg:{65505:[]}},e.parseMetaData=function(t,i,a){a=a||{};var n=this,r=a.maxMetaDataSize||262144,o={},s=!(window.DataView&&t&&t.size>=12&&"image/jpeg"===t.type&&e.blobSlice);(s||!e.readFile(e.blobSlice.call(t,0,r),function(t){var r,s,d,l,c=t.target.result,u=new DataView(c),g=2,f=u.byteLength-4,h=g;if(65496===u.getUint16(0)){for(;f>g&&(r=u.getUint16(g),r>=65504&&65519>=r||65534===r);){if(s=u.getUint16(g+2)+2,g+s>u.byteLength){console.log("Invalid meta data: Invalid segment size.");break}if(d=e.metaDataParsers.jpeg[r])for(l=0;d.length>l;l+=1)d[l].call(n,u,g,s,o,a);g+=s,h=g}!a.disableImageHead&&h>6&&(o.imageHead=c.slice?c.slice(0,h):new Uint8Array(c).subarray(0,h))}else console.log("Invalid JPEG file: Missing JPEG marker.");i(o)},"readAsArrayBuffer"))&&i(o)}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image","load-image-meta"],e):e(window.loadImage)}(function(e){"use strict";e.ExifMap=function(){return this},e.ExifMap.prototype.map={Orientation:274},e.ExifMap.prototype.get=function(e){return this[e]||this[this.map[e]]},e.getExifThumbnail=function(e,t,i){var a,n,r;if(!i||t+i>e.byteLength)return console.log("Invalid Exif data: Invalid thumbnail data."),void 0;for(a=[],n=0;i>n;n+=1)r=e.getUint8(t+n),a.push((16>r?"0":"")+r.toString(16));return"data:image/jpeg,%"+a.join("%")},e.exifTagTypes={1:{getValue:function(e,t){return e.getUint8(t)},size:1},2:{getValue:function(e,t){return String.fromCharCode(e.getUint8(t))},size:1,ascii:!0},3:{getValue:function(e,t,i){return e.getUint16(t,i)},size:2},4:{getValue:function(e,t,i){return e.getUint32(t,i)},size:4},5:{getValue:function(e,t,i){return e.getUint32(t,i)/e.getUint32(t+4,i)},size:8},9:{getValue:function(e,t,i){return e.getInt32(t,i)},size:4},10:{getValue:function(e,t,i){return e.getInt32(t,i)/e.getInt32(t+4,i)},size:8}},e.exifTagTypes[7]=e.exifTagTypes[1],e.getExifValue=function(t,i,a,n,r,o){var s,d,l,c,u,g,f=e.exifTagTypes[n];if(!f)return console.log("Invalid Exif data: Invalid tag type."),void 0;if(s=f.size*r,d=s>4?i+t.getUint32(a+8,o):a+8,d+s>t.byteLength)return console.log("Invalid Exif data: Invalid data offset."),void 0;if(1===r)return f.getValue(t,d,o);for(l=[],c=0;r>c;c+=1)l[c]=f.getValue(t,d+c*f.size,o);if(f.ascii){for(u="",c=0;l.length>c&&(g=l[c],"\0"!==g);c+=1)u+=g;return u}return l},e.parseExifTag=function(t,i,a,n,r){var o=t.getUint16(a,n);r.exif[o]=e.getExifValue(t,i,a,t.getUint16(a+2,n),t.getUint32(a+4,n),n)},e.parseExifTags=function(e,t,i,a,n){var r,o,s;if(i+6>e.byteLength)return console.log("Invalid Exif data: Invalid directory offset."),void 0;if(r=e.getUint16(i,a),o=i+2+12*r,o+4>e.byteLength)return console.log("Invalid Exif data: Invalid directory size."),void 0;for(s=0;r>s;s+=1)this.parseExifTag(e,t,i+2+12*s,a,n);return e.getUint32(o,a)},e.parseExifData=function(t,i,a,n,r){if(!r.disableExif){var o,s,d,l=i+10;if(1165519206===t.getUint32(i+4)){if(l+8>t.byteLength)return console.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==t.getUint16(i+8))return console.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(t.getUint16(l)){case 18761:o=!0;break;case 19789:o=!1;break;default:return console.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==t.getUint16(l+2,o))return console.log("Invalid Exif data: Missing TIFF marker."),void 0;s=t.getUint32(l+4,o),n.exif=new e.ExifMap,s=e.parseExifTags(t,l,l+s,o,n),s&&!r.disableExifThumbnail&&(d={exif:{}},s=e.parseExifTags(t,l,l+s,o,d),d.exif[513]&&(n.exif.Thumbnail=e.getExifThumbnail(t,l+d.exif[513],d.exif[514]))),n.exif[34665]&&!r.disableExifSub&&e.parseExifTags(t,l,l+n.exif[34665],o,n),n.exif[34853]&&!r.disableExifGps&&e.parseExifTags(t,l,l+n.exif[34853],o,n)}}},e.metaDataParsers.jpeg[65505].push(e.parseExifData)}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image","load-image-exif"],e):e(window.loadImage)}(function(e){"use strict";var t,i,a;e.ExifMap.prototype.tags={256:"ImageWidth",257:"ImageHeight",34665:"ExifIFDPointer",34853:"GPSInfoIFDPointer",40965:"InteroperabilityIFDPointer",258:"BitsPerSample",259:"Compression",262:"PhotometricInterpretation",274:"Orientation",277:"SamplesPerPixel",284:"PlanarConfiguration",530:"YCbCrSubSampling",531:"YCbCrPositioning",282:"XResolution",283:"YResolution",296:"ResolutionUnit",273:"StripOffsets",278:"RowsPerStrip",279:"StripByteCounts",513:"JPEGInterchangeFormat",514:"JPEGInterchangeFormatLength",301:"TransferFunction",318:"WhitePoint",319:"PrimaryChromaticities",529:"YCbCrCoefficients",532:"ReferenceBlackWhite",306:"DateTime",270:"ImageDescription",271:"Make",272:"Model",305:"Software",315:"Artist",33432:"Copyright",36864:"ExifVersion",40960:"FlashpixVersion",40961:"ColorSpace",40962:"PixelXDimension",40963:"PixelYDimension",42240:"Gamma",37121:"ComponentsConfiguration",37122:"CompressedBitsPerPixel",37500:"MakerNote",37510:"UserComment",40964:"RelatedSoundFile",36867:"DateTimeOriginal",36868:"DateTimeDigitized",37520:"SubSecTime",37521:"SubSecTimeOriginal",37522:"SubSecTimeDigitized",33434:"ExposureTime",33437:"FNumber",34850:"ExposureProgram",34852:"SpectralSensitivity",34855:"PhotographicSensitivity",34856:"OECF",34864:"SensitivityType",34865:"StandardOutputSensitivity",34866:"RecommendedExposureIndex",34867:"ISOSpeed",34868:"ISOSpeedLatitudeyyy",34869:"ISOSpeedLatitudezzz",37377:"ShutterSpeedValue",37378:"ApertureValue",37379:"BrightnessValue",37380:"ExposureBias",37381:"MaxApertureValue",37382:"SubjectDistance",37383:"MeteringMode",37384:"LightSource",37385:"Flash",37396:"SubjectArea",37386:"FocalLength",41483:"FlashEnergy",41484:"SpatialFrequencyResponse",41486:"FocalPlaneXResolution",41487:"FocalPlaneYResolution",41488:"FocalPlaneResolutionUnit",41492:"SubjectLocation",41493:"ExposureIndex",41495:"SensingMethod",41728:"FileSource",41729:"SceneType",41730:"CFAPattern",41985:"CustomRendered",41986:"ExposureMode",41987:"WhiteBalance",41988:"DigitalZoomRatio",41989:"FocalLengthIn35mmFilm",41990:"SceneCaptureType",41991:"GainControl",41992:"Contrast",41993:"Saturation",41994:"Sharpness",41995:"DeviceSettingDescription",41996:"SubjectDistanceRange",42016:"ImageUniqueID",42032:"CameraOwnerName",42033:"BodySerialNumber",42034:"LensSpecification",42035:"LensMake",42036:"LensModel",42037:"LensSerialNumber",0:"GPSVersionID",1:"GPSLatitudeRef",2:"GPSLatitude",3:"GPSLongitudeRef",4:"GPSLongitude",5:"GPSAltitudeRef",6:"GPSAltitude",7:"GPSTimeStamp",8:"GPSSatellites",9:"GPSStatus",10:"GPSMeasureMode",11:"GPSDOP",12:"GPSSpeedRef",13:"GPSSpeed",14:"GPSTrackRef",15:"GPSTrack",16:"GPSImgDirectionRef",17:"GPSImgDirection",18:"GPSMapDatum",19:"GPSDestLatitudeRef",20:"GPSDestLatitude",21:"GPSDestLongitudeRef",22:"GPSDestLongitude",23:"GPSDestBearingRef",24:"GPSDestBearing",25:"GPSDestDistanceRef",26:"GPSDestDistance",27:"GPSProcessingMethod",28:"GPSAreaInformation",29:"GPSDateStamp",30:"GPSDifferential",31:"GPSHPositioningError"},e.ExifMap.prototype.stringValues={ExposureProgram:{0:"Undefined",1:"Manual",2:"Normal program",3:"Aperture priority",4:"Shutter priority",5:"Creative program",6:"Action program",7:"Portrait mode",8:"Landscape mode"},MeteringMode:{0:"Unknown",1:"Average",2:"CenterWeightedAverage",3:"Spot",4:"MultiSpot",5:"Pattern",6:"Partial",255:"Other"},LightSource:{0:"Unknown",1:"Daylight",2:"Fluorescent",3:"Tungsten (incandescent light)",4:"Flash",9:"Fine weather",10:"Cloudy weather",11:"Shade",12:"Daylight fluorescent (D 5700 - 7100K)",13:"Day white fluorescent (N 4600 - 5400K)",14:"Cool white fluorescent (W 3900 - 4500K)",15:"White fluorescent (WW 3200 - 3700K)",17:"Standard light A",18:"Standard light B",19:"Standard light C",20:"D55",21:"D65",22:"D75",23:"D50",24:"ISO studio tungsten",255:"Other"},Flash:{0:"Flash did not fire",1:"Flash fired",5:"Strobe return light not detected",7:"Strobe return light detected",9:"Flash fired, compulsory flash mode",13:"Flash fired, compulsory flash mode, return light not detected",15:"Flash fired, compulsory flash mode, return light detected",16:"Flash did not fire, compulsory flash mode",24:"Flash did not fire, auto mode",25:"Flash fired, auto mode",29:"Flash fired, auto mode, return light not detected",31:"Flash fired, auto mode, return light detected",32:"No flash function",65:"Flash fired, red-eye reduction mode",69:"Flash fired, red-eye reduction mode, return light not detected",71:"Flash fired, red-eye reduction mode, return light detected",73:"Flash fired, compulsory flash mode, red-eye reduction mode",77:"Flash fired, compulsory flash mode, red-eye reduction mode, return light not detected",79:"Flash fired, compulsory flash mode, red-eye reduction mode, return light detected",89:"Flash fired, auto mode, red-eye reduction mode",93:"Flash fired, auto mode, return light not detected, red-eye reduction mode",95:"Flash fired, auto mode, return light detected, red-eye reduction mode"},SensingMethod:{1:"Undefined",2:"One-chip color area sensor",3:"Two-chip color area sensor",4:"Three-chip color area sensor",5:"Color sequential area sensor",7:"Trilinear sensor",8:"Color sequential linear sensor"},SceneCaptureType:{0:"Standard",1:"Landscape",2:"Portrait",3:"Night scene"},SceneType:{1:"Directly photographed"},CustomRendered:{0:"Normal process",1:"Custom process"},WhiteBalance:{0:"Auto white balance",1:"Manual white balance"},GainControl:{0:"None",1:"Low gain up",2:"High gain up",3:"Low gain down",4:"High gain down"},Contrast:{0:"Normal",1:"Soft",2:"Hard"},Saturation:{0:"Normal",1:"Low saturation",2:"High saturation"},Sharpness:{0:"Normal",1:"Soft",2:"Hard"},SubjectDistanceRange:{0:"Unknown",1:"Macro",2:"Close view",3:"Distant view"},FileSource:{3:"DSC"},ComponentsConfiguration:{0:"",1:"Y",2:"Cb",3:"Cr",4:"R",5:"G",6:"B"},Orientation:{1:"top-left",2:"top-right",3:"bottom-right",4:"bottom-left",5:"left-top",6:"right-top",7:"right-bottom",8:"left-bottom"}},e.ExifMap.prototype.getText=function(e){var t=this.get(e);switch(e){case"LightSource":case"Flash":case"MeteringMode":case"ExposureProgram":case"SensingMethod":case"SceneCaptureType":case"SceneType":case"CustomRendered":case"WhiteBalance":case"GainControl":case"Contrast":case"Saturation":case"Sharpness":case"SubjectDistanceRange":case"FileSource":case"Orientation":return this.stringValues[e][t];case"ExifVersion":case"FlashpixVersion":return String.fromCharCode(t[0],t[1],t[2],t[3]);case"ComponentsConfiguration":return this.stringValues[e][t[0]]+this.stringValues[e][t[1]]+this.stringValues[e][t[2]]+this.stringValues[e][t[3]];case"GPSVersionID":return t[0]+"."+t[1]+"."+t[2]+"."+t[3]}return t+""},t=e.ExifMap.prototype.tags,i=e.ExifMap.prototype.map;for(a in t)t.hasOwnProperty(a)&&(i[t[a]]=a);e.ExifMap.prototype.getAll=function(){var e,i,a={};for(e in this)this.hasOwnProperty(e)&&(i=t[e],i&&(a[i]=this.getText(i)));return a}}); \ No newline at end of file diff --git a/static/file_upload/js/locale.js b/static/file_upload/js/locale.js deleted file mode 100644 index ea64b0a8..00000000 --- a/static/file_upload/js/locale.js +++ /dev/null @@ -1,29 +0,0 @@ -/* - * jQuery File Upload Plugin Localization Example 6.5.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*global window */ - -window.locale = { - "fileupload": { - "errors": { - "maxFileSize": "File is too big", - "minFileSize": "File is too small", - "acceptFileTypes": "Filetype not allowed", - "maxNumberOfFiles": "Max number of files exceeded", - "uploadedBytes": "Uploaded bytes exceed file size", - "emptyResult": "Empty file upload result" - }, - "error": "Error", - "start": "Start", - "cancel": "Cancel", - "destroy": "Delete" - } -}; diff --git a/static/file_upload/js/main.js b/static/file_upload/js/main.js deleted file mode 100644 index 1850909a..00000000 --- a/static/file_upload/js/main.js +++ /dev/null @@ -1,77 +0,0 @@ -/* - * jQuery File Upload Plugin JS Example 8.8.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, regexp: true */ -/*global $, window, blueimp */ - -$(function () { - 'use strict'; - - // Initialize the jQuery File Upload widget: - $('#fileupload').fileupload({ - // Uncomment the following to send cross-domain cookies: - //xhrFields: {withCredentials: true}, - //url: 'server/php/' - }); - - // Enable iframe cross-domain access via redirect option: - $('#fileupload').fileupload( - 'option', - 'redirect', - window.location.href.replace( - /\/[^\/]*$/, - '/cors/result.html?%s' - ) - ); - - if (window.location.hostname === 'blueimp.github.io') { - // Demo settings: - $('#fileupload').fileupload('option', { - url: '//jquery-file-upload.appspot.com/', - // Enable image resizing, except for Android and Opera, - // which actually support image resizing, but fail to - // send Blob objects via XHR requests: - disableImageResize: /Android(?!.*Chrome)|Opera/ - .test(window.navigator.userAgent), - maxFileSize: 5000000, - acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i - }); - // Upload server status check for browsers with CORS support: - if ($.support.cors) { - $.ajax({ - url: '//jquery-file-upload.appspot.com/', - type: 'HEAD' - }).fail(function () { - $('
') - .text('Upload server currently unavailable - ' + - new Date()) - .appendTo('#fileupload'); - }); - } - } else { - // Load existing files: - $('#fileupload').addClass('fileupload-processing'); - $.ajax({ - // Uncomment the following to send cross-domain cookies: - //xhrFields: {withCredentials: true}, - //url: $('#fileupload').fileupload('option', 'url'), - url: '/upload/view/', - dataType: 'json', - context: $('#fileupload')[0] - }).always(function () { - $(this).removeClass('fileupload-processing'); - }).done(function (result) { - $(this).fileupload('option', 'done') - .call(this, null, {result: result}); - }); - } - -}); diff --git a/static/file_upload/js/tmpl.min.js b/static/file_upload/js/tmpl.min.js deleted file mode 100644 index a7cae528..00000000 --- a/static/file_upload/js/tmpl.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(e){"use strict";var n=function(e,t){var r=/[^\w\-\.:]/.test(e)?new Function(n.arg+",tmpl","var _e=tmpl.encode"+n.helper+",_s='"+e.replace(n.regexp,n.func)+"';return _s;"):n.cache[e]=n.cache[e]||n(n.load(e));return t?r(t,n):function(e){return r(e,n)}};n.cache={},n.load=function(e){return document.getElementById(e).innerHTML},n.regexp=/([\s'\\])(?!(?:[^{]|\{(?!%))*%\})|(?:\{%(=|#)([\s\S]+?)%\})|(\{%)|(%\})/g,n.func=function(e,n,t,r,c,u){return n?{"\n":"\\n","\r":"\\r"," ":"\\t"," ":" "}[n]||"\\"+n:t?"="===t?"'+_e("+r+")+'":"'+"+r+"+'":c?"';":u?"_s+='":void 0},n.encReg=/[<>&"'\x00]/g,n.encMap={"<":"<",">":">","&":"&",'"':""","'":"'"},n.encode=function(e){return String(e).replace(n.encReg,function(e){return n.encMap[e]||""})},n.arg="o",n.helper=",print=function(s,e){_s+=e&&(s||'')||_e(s);},include=function(s,d){_s+=tmpl(s,d);}","function"==typeof define&&define.amd?define(function(){return n}):e.tmpl=n}(this); \ No newline at end of file diff --git a/static/file_upload/js/vendor/jquery.ui.widget.js b/static/file_upload/js/vendor/jquery.ui.widget.js deleted file mode 100644 index 2d370893..00000000 --- a/static/file_upload/js/vendor/jquery.ui.widget.js +++ /dev/null @@ -1,530 +0,0 @@ -/* - * jQuery UI Widget 1.10.3+amd - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013 jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - * - * http://api.jqueryui.com/jQuery.widget/ - */ - -(function (factory) { - if (typeof define === "function" && define.amd) { - // Register as an anonymous AMD module: - define(["jquery"], factory); - } else { - // Browser globals: - factory(jQuery); - } -}(function( $, undefined ) { - -var uuid = 0, - slice = Array.prototype.slice, - _cleanData = $.cleanData; -$.cleanData = function( elems ) { - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - try { - $( elem ).triggerHandler( "remove" ); - // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} - } - _cleanData( elems ); -}; - -$.widget = function( name, base, prototype ) { - var fullName, existingConstructor, constructor, basePrototype, - // proxiedPrototype allows the provided prototype to remain unmodified - // so that it can be used as a mixin for multiple widgets (#8876) - proxiedPrototype = {}, - namespace = name.split( "." )[ 0 ]; - - name = name.split( "." )[ 1 ]; - fullName = namespace + "-" + name; - - if ( !prototype ) { - prototype = base; - base = $.Widget; - } - - // create selector for plugin - $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) { - return !!$.data( elem, fullName ); - }; - - $[ namespace ] = $[ namespace ] || {}; - existingConstructor = $[ namespace ][ name ]; - constructor = $[ namespace ][ name ] = function( options, element ) { - // allow instantiation without "new" keyword - if ( !this._createWidget ) { - return new constructor( options, element ); - } - - // allow instantiation without initializing for simple inheritance - // must use "new" keyword (the code above always passes args) - if ( arguments.length ) { - this._createWidget( options, element ); - } - }; - // extend with the existing constructor to carry over any static properties - $.extend( constructor, existingConstructor, { - version: prototype.version, - // copy the object used to create the prototype in case we need to - // redefine the widget later - _proto: $.extend( {}, prototype ), - // track widgets that inherit from this widget in case this widget is - // redefined after a widget inherits from it - _childConstructors: [] - }); - - basePrototype = new base(); - // we need to make the options hash a property directly on the new instance - // otherwise we'll modify the options hash on the prototype that we're - // inheriting from - basePrototype.options = $.widget.extend( {}, basePrototype.options ); - $.each( prototype, function( prop, value ) { - if ( !$.isFunction( value ) ) { - proxiedPrototype[ prop ] = value; - return; - } - proxiedPrototype[ prop ] = (function() { - var _super = function() { - return base.prototype[ prop ].apply( this, arguments ); - }, - _superApply = function( args ) { - return base.prototype[ prop ].apply( this, args ); - }; - return function() { - var __super = this._super, - __superApply = this._superApply, - returnValue; - - this._super = _super; - this._superApply = _superApply; - - returnValue = value.apply( this, arguments ); - - this._super = __super; - this._superApply = __superApply; - - return returnValue; - }; - })(); - }); - constructor.prototype = $.widget.extend( basePrototype, { - // TODO: remove support for widgetEventPrefix - // always use the name + a colon as the prefix, e.g., draggable:start - // don't prefix for widgets that aren't DOM-based - widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name - }, proxiedPrototype, { - constructor: constructor, - namespace: namespace, - widgetName: name, - widgetFullName: fullName - }); - - // If this widget is being redefined then we need to find all widgets that - // are inheriting from it and redefine all of them so that they inherit from - // the new version of this widget. We're essentially trying to replace one - // level in the prototype chain. - if ( existingConstructor ) { - $.each( existingConstructor._childConstructors, function( i, child ) { - var childPrototype = child.prototype; - - // redefine the child widget using the same prototype that was - // originally used, but inherit from the new version of the base - $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto ); - }); - // remove the list of existing child constructors from the old constructor - // so the old child constructors can be garbage collected - delete existingConstructor._childConstructors; - } else { - base._childConstructors.push( constructor ); - } - - $.widget.bridge( name, constructor ); -}; - -$.widget.extend = function( target ) { - var input = slice.call( arguments, 1 ), - inputIndex = 0, - inputLength = input.length, - key, - value; - for ( ; inputIndex < inputLength; inputIndex++ ) { - for ( key in input[ inputIndex ] ) { - value = input[ inputIndex ][ key ]; - if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) { - // Clone objects - if ( $.isPlainObject( value ) ) { - target[ key ] = $.isPlainObject( target[ key ] ) ? - $.widget.extend( {}, target[ key ], value ) : - // Don't extend strings, arrays, etc. with objects - $.widget.extend( {}, value ); - // Copy everything else by reference - } else { - target[ key ] = value; - } - } - } - } - return target; -}; - -$.widget.bridge = function( name, object ) { - var fullName = object.prototype.widgetFullName || name; - $.fn[ name ] = function( options ) { - var isMethodCall = typeof options === "string", - args = slice.call( arguments, 1 ), - returnValue = this; - - // allow multiple hashes to be passed on init - options = !isMethodCall && args.length ? - $.widget.extend.apply( null, [ options ].concat(args) ) : - options; - - if ( isMethodCall ) { - this.each(function() { - var methodValue, - instance = $.data( this, fullName ); - if ( !instance ) { - return $.error( "cannot call methods on " + name + " prior to initialization; " + - "attempted to call method '" + options + "'" ); - } - if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) { - return $.error( "no such method '" + options + "' for " + name + " widget instance" ); - } - methodValue = instance[ options ].apply( instance, args ); - if ( methodValue !== instance && methodValue !== undefined ) { - returnValue = methodValue && methodValue.jquery ? - returnValue.pushStack( methodValue.get() ) : - methodValue; - return false; - } - }); - } else { - this.each(function() { - var instance = $.data( this, fullName ); - if ( instance ) { - instance.option( options || {} )._init(); - } else { - $.data( this, fullName, new object( options, this ) ); - } - }); - } - - return returnValue; - }; -}; - -$.Widget = function( /* options, element */ ) {}; -$.Widget._childConstructors = []; - -$.Widget.prototype = { - widgetName: "widget", - widgetEventPrefix: "", - defaultElement: "
", - options: { - disabled: false, - - // callbacks - create: null - }, - _createWidget: function( options, element ) { - element = $( element || this.defaultElement || this )[ 0 ]; - this.element = $( element ); - this.uuid = uuid++; - this.eventNamespace = "." + this.widgetName + this.uuid; - this.options = $.widget.extend( {}, - this.options, - this._getCreateOptions(), - options ); - - this.bindings = $(); - this.hoverable = $(); - this.focusable = $(); - - if ( element !== this ) { - $.data( element, this.widgetFullName, this ); - this._on( true, this.element, { - remove: function( event ) { - if ( event.target === element ) { - this.destroy(); - } - } - }); - this.document = $( element.style ? - // element within the document - element.ownerDocument : - // element is window or document - element.document || element ); - this.window = $( this.document[0].defaultView || this.document[0].parentWindow ); - } - - this._create(); - this._trigger( "create", null, this._getCreateEventData() ); - this._init(); - }, - _getCreateOptions: $.noop, - _getCreateEventData: $.noop, - _create: $.noop, - _init: $.noop, - - destroy: function() { - this._destroy(); - // we can probably remove the unbind calls in 2.0 - // all event bindings should go through this._on() - this.element - .unbind( this.eventNamespace ) - // 1.9 BC for #7810 - // TODO remove dual storage - .removeData( this.widgetName ) - .removeData( this.widgetFullName ) - // support: jquery <1.6.3 - // http://bugs.jquery.com/ticket/9413 - .removeData( $.camelCase( this.widgetFullName ) ); - this.widget() - .unbind( this.eventNamespace ) - .removeAttr( "aria-disabled" ) - .removeClass( - this.widgetFullName + "-disabled " + - "ui-state-disabled" ); - - // clean up events and states - this.bindings.unbind( this.eventNamespace ); - this.hoverable.removeClass( "ui-state-hover" ); - this.focusable.removeClass( "ui-state-focus" ); - }, - _destroy: $.noop, - - widget: function() { - return this.element; - }, - - option: function( key, value ) { - var options = key, - parts, - curOption, - i; - - if ( arguments.length === 0 ) { - // don't return a reference to the internal hash - return $.widget.extend( {}, this.options ); - } - - if ( typeof key === "string" ) { - // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } } - options = {}; - parts = key.split( "." ); - key = parts.shift(); - if ( parts.length ) { - curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] ); - for ( i = 0; i < parts.length - 1; i++ ) { - curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {}; - curOption = curOption[ parts[ i ] ]; - } - key = parts.pop(); - if ( value === undefined ) { - return curOption[ key ] === undefined ? null : curOption[ key ]; - } - curOption[ key ] = value; - } else { - if ( value === undefined ) { - return this.options[ key ] === undefined ? null : this.options[ key ]; - } - options[ key ] = value; - } - } - - this._setOptions( options ); - - return this; - }, - _setOptions: function( options ) { - var key; - - for ( key in options ) { - this._setOption( key, options[ key ] ); - } - - return this; - }, - _setOption: function( key, value ) { - this.options[ key ] = value; - - if ( key === "disabled" ) { - this.widget() - .toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value ) - .attr( "aria-disabled", value ); - this.hoverable.removeClass( "ui-state-hover" ); - this.focusable.removeClass( "ui-state-focus" ); - } - - return this; - }, - - enable: function() { - return this._setOption( "disabled", false ); - }, - disable: function() { - return this._setOption( "disabled", true ); - }, - - _on: function( suppressDisabledCheck, element, handlers ) { - var delegateElement, - instance = this; - - // no suppressDisabledCheck flag, shuffle arguments - if ( typeof suppressDisabledCheck !== "boolean" ) { - handlers = element; - element = suppressDisabledCheck; - suppressDisabledCheck = false; - } - - // no element argument, shuffle and use this.element - if ( !handlers ) { - handlers = element; - element = this.element; - delegateElement = this.widget(); - } else { - // accept selectors, DOM elements - element = delegateElement = $( element ); - this.bindings = this.bindings.add( element ); - } - - $.each( handlers, function( event, handler ) { - function handlerProxy() { - // allow widgets to customize the disabled handling - // - disabled as an array instead of boolean - // - disabled class as method for disabling individual parts - if ( !suppressDisabledCheck && - ( instance.options.disabled === true || - $( this ).hasClass( "ui-state-disabled" ) ) ) { - return; - } - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - - // copy the guid so direct unbinding works - if ( typeof handler !== "string" ) { - handlerProxy.guid = handler.guid = - handler.guid || handlerProxy.guid || $.guid++; - } - - var match = event.match( /^(\w+)\s*(.*)$/ ), - eventName = match[1] + instance.eventNamespace, - selector = match[2]; - if ( selector ) { - delegateElement.delegate( selector, eventName, handlerProxy ); - } else { - element.bind( eventName, handlerProxy ); - } - }); - }, - - _off: function( element, eventName ) { - eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace; - element.unbind( eventName ).undelegate( eventName ); - }, - - _delay: function( handler, delay ) { - function handlerProxy() { - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - var instance = this; - return setTimeout( handlerProxy, delay || 0 ); - }, - - _hoverable: function( element ) { - this.hoverable = this.hoverable.add( element ); - this._on( element, { - mouseenter: function( event ) { - $( event.currentTarget ).addClass( "ui-state-hover" ); - }, - mouseleave: function( event ) { - $( event.currentTarget ).removeClass( "ui-state-hover" ); - } - }); - }, - - _focusable: function( element ) { - this.focusable = this.focusable.add( element ); - this._on( element, { - focusin: function( event ) { - $( event.currentTarget ).addClass( "ui-state-focus" ); - }, - focusout: function( event ) { - $( event.currentTarget ).removeClass( "ui-state-focus" ); - } - }); - }, - - _trigger: function( type, event, data ) { - var prop, orig, - callback = this.options[ type ]; - - data = data || {}; - event = $.Event( event ); - event.type = ( type === this.widgetEventPrefix ? - type : - this.widgetEventPrefix + type ).toLowerCase(); - // the original event may come from any element - // so we need to reset the target on the new event - event.target = this.element[ 0 ]; - - // copy original event properties over to the new event - orig = event.originalEvent; - if ( orig ) { - for ( prop in orig ) { - if ( !( prop in event ) ) { - event[ prop ] = orig[ prop ]; - } - } - } - - this.element.trigger( event, data ); - return !( $.isFunction( callback ) && - callback.apply( this.element[0], [ event ].concat( data ) ) === false || - event.isDefaultPrevented() ); - } -}; - -$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) { - $.Widget.prototype[ "_" + method ] = function( element, options, callback ) { - if ( typeof options === "string" ) { - options = { effect: options }; - } - var hasOptions, - effectName = !options ? - method : - options === true || typeof options === "number" ? - defaultEffect : - options.effect || defaultEffect; - options = options || {}; - if ( typeof options === "number" ) { - options = { duration: options }; - } - hasOptions = !$.isEmptyObject( options ); - options.complete = callback; - if ( options.delay ) { - element.delay( options.delay ); - } - if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) { - element[ method ]( options ); - } else if ( effectName !== method && element[ effectName ] ) { - element[ effectName ]( options.duration, options.easing, callback ); - } else { - element.queue(function( next ) { - $( this )[ method ](); - if ( callback ) { - callback.call( element[ 0 ] ); - } - next(); - }); - } - }; -}); - -})); diff --git a/templates/client/fileupload/fileupload/picture_angular_form.html b/templates/client/fileupload/fileupload/picture_angular_form.html deleted file mode 100644 index a5ac9c09..00000000 --- a/templates/client/fileupload/fileupload/picture_angular_form.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - -jQuery File Upload Demo - AngularJS version - - - - - - - - - - - - - - - - -
-

Django jQuery File Upload Demo

-

AngularJS version

- -
-
-

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for AngularJS.
- Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

-
-
- -
{% csrf_token %} - - - -
-
- - - - Add files... - - - - - -
-
- -
- -
- -
 
-
-
- {% verbatim %} - - - - - - - - -
-
- -
-
-
-

- - {{file.name}} - {{file.name}} - - {{file.name}} -

-
Error {{file.error}}
-
-

{{file.size | formatFileSize}}

-
-
- - - -
- {% endverbatim %} -
-
-
-
-

Demo Notes

-
-
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/templates/client/fileupload/fileupload/picture_basic_form.html b/templates/client/fileupload/fileupload/picture_basic_form.html deleted file mode 100644 index 6bd17a40..00000000 --- a/templates/client/fileupload/fileupload/picture_basic_form.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - -Django jQuery File Upload Demo - Basic version - - - - - - - - - - - -
-

Django jQuery File Upload Demo

-

Basic version

- -
-
-

File Upload widget with multiple file selection, drag&drop support and progress bar for jQuery.
- Supports cross-domain, chunked and resumable file uploads.

-
-
- - - - Select files... - - - -
-
- -
-
-
- -
-
-
-
-

Demo Notes

-
-
- -
-
-
- - - - - - - - - - - - - diff --git a/templates/client/fileupload/fileupload/picture_basicplus_form.html b/templates/client/fileupload/fileupload/picture_basicplus_form.html deleted file mode 100644 index eb1cc1c5..00000000 --- a/templates/client/fileupload/fileupload/picture_basicplus_form.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - -jQuery File Upload Demo - Basic Plus version - - - - - - - - - - - -
-

Django jQuery File Upload Demo

-

Basic Plus version

- -
-
-

File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery.
- Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

-
-
- - - - Add files... - - - -
-
- -
-
-
- -
-
-
-
-

Demo Notes

-
-
-
    -
  • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
  • -
  • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
  • -
  • You can drag & drop files from your desktop on this webpage (see Browser support).
  • -
  • Please refer to the project website and documentation for more information.
  • -
  • Built with Twitter's Bootstrap CSS framework and Icons from Glyphicons.
  • -
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/templates/client/fileupload/fileupload/picture_form.html b/templates/client/fileupload/fileupload/picture_form.html deleted file mode 100644 index a3cb5767..00000000 --- a/templates/client/fileupload/fileupload/picture_form.html +++ /dev/null @@ -1,102 +0,0 @@ -{% extends "client/fileupload/upload_base.html" %} -{% load upload_tags %} -{% load staticfiles %} - -{% block content %} -
- - -
{% csrf_token %} - - - -
-
- - - - Add files... - - - - - - - - -
- -
- -
-
-
- -
 
-
-
- - -
-
- -
- - -{% upload_js %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -{% endblock %} \ No newline at end of file diff --git a/templates/client/fileupload/fileupload/picture_jquery_form.html b/templates/client/fileupload/fileupload/picture_jquery_form.html deleted file mode 100644 index cf0ed04c..00000000 --- a/templates/client/fileupload/fileupload/picture_jquery_form.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - -Django jQuery File Upload Demo - jQuery UI version - - - - - - - - - - - - - - - - - -

Django jQuery File Upload Demo

-

jQuery UI version

-
- - -
- -
-

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery UI.
- Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

-
- -
{% csrf_token %} - - - -
-
- - - Add files... - - - - - - - - -
- - -
- -
-
-
-

Demo Notes

-
    -
  • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
  • -
  • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
  • -
  • Uploaded files will be deleted automatically after 5 minutes (demo setting).
  • -
  • You can drag & drop files from your desktop on this webpage (see Browser support).
  • -
  • Please refer to the project website and documentation for more information.
  • -
  • Built with jQuery UI.
  • -
- - -{% verbatim %} - - - - -{% endverbatim %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/templates/client/fileupload/upload_base.html b/templates/client/fileupload/upload_base.html deleted file mode 100644 index 1700c17b..00000000 --- a/templates/client/fileupload/upload_base.html +++ /dev/null @@ -1,52 +0,0 @@ - -{% load staticfiles %} - - - - - - Django Jquery file upload demo - - - - - - - - - - - - - - - - - - -{% block content %} -

No content set

-{% endblock %} - - - diff --git a/templates/client/wizard/third_step.html b/templates/client/wizard/third_step.html new file mode 100644 index 00000000..4ddd325e --- /dev/null +++ b/templates/client/wizard/third_step.html @@ -0,0 +1,115 @@ +{% extends "client/base_catalog.html" %} + + +{% block styles %} + +{% endblock %} + +{% block content_list %} + + +
+

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

+
+ +
+ +
+
+

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

+ +
+
+
+
+

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

+ +
+
+
+
+

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

+
+
+ 1,2 балла к рейтингу
+
+
+ +
{% csrf_token %} +
+ +
+
+
+ +
+ +
+

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

+
+
+ +
+ +
    +
    + + + +
    + +
    + +
    +
    +
    + +
    + +{% endblock %} \ No newline at end of file diff --git a/wizard/forms.py b/wizard/forms.py index e60e10ec..c71149ec 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -63,3 +63,4 @@ class ExpoForm2(forms.Form): registration_depos = forms.FloatField() deadline_date = forms.DateField(widget=forms.TextInput(attrs={'placeholder':'дд.мм.гг'})) + diff --git a/wizard/urls.py b/wizard/urls.py index d04ce133..4140c730 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,9 +1,9 @@ from django.conf.urls import patterns, url, include from wizard.forms import ExpoForm1, ExpoForm2 -from wizard.views import ExpoWizard +from wizard.views import ExpoWizard, add_photo_view urlpatterns = patterns('', - url(r'^add-photo/', include('fileupload.urls')), + url(r'^add-photo/', add_photo_view, name="add-photo"), url(r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) ) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py index 30a3ad5a..0f18246d 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -1,12 +1,12 @@ -from django.shortcuts import render_to_response +from django.shortcuts import render_to_response, render from django.contrib.formtools.wizard.views import SessionWizardView -from django.core.files.storage import default_storage, FileSystemStorage +from django.core.files.storage import FileSystemStorage import os from proj import settings from wizard import forms from exposition.models import Exposition, Statistic from functions.form_check import translit_with_separator - +from django.http import HttpResponseRedirect # defining different template for every form TEMPLATES = {'0':'client/wizard/first_step.html', '1':'client/wizard/second_step.html'} @@ -80,10 +80,29 @@ class ExpoWizard(SessionWizardView): 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], - }) + + return HttpResponseRedirect("add-photo") + # 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]] + +from django.core.context_processors import csrf +import logging + +loger = logging.getLogger(__name__) + +PATH_TO_FILE = os.path.join(settings.MEDIA_ROOT, 'exposition_foto/') + + +def add_photo_view(request): + if request.POST: + for key, file in request.FILES.items(): + loger.debug(key) + loger.debug(len(request.FILES)) + context = {} + context.update(csrf(request)) + return render(request, "client/wizard/third_step.html", context) \ No newline at end of file From ed1353299acdd486c695093df676cd5cc206693c Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Tue, 1 Sep 2015 16:34:37 +0300 Subject: [PATCH 04/16] Make simple wizard - add feature to upload few files --- templates/client/wizard/second_step.html | 432 +++++++++++------------ templates/client/wizard/third_step.html | 203 ++++++----- wizard/forms.py | 9 + wizard/models.py | 7 +- wizard/urls.py | 7 +- wizard/views.py | 150 ++++---- 6 files changed, 430 insertions(+), 378 deletions(-) diff --git a/templates/client/wizard/second_step.html b/templates/client/wizard/second_step.html index 5e75559b..dcd78540 100644 --- a/templates/client/wizard/second_step.html +++ b/templates/client/wizard/second_step.html @@ -6,305 +6,297 @@

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

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

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

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

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

    - изменить +
    + +
    -
    - -
    -
    -

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

    +
    +
    +

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

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

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

    +
    -
    -
    + -
    -
    +
    -
    Стоимость билетов
    +
    -
    +

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

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

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

    +
    +
    -
    -

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

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

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

    -
    -
    -
    -

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

    -
    -
    -
    -
    -{% endwith %} -{% endif %} + +
    + + {% 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 index 4ddd325e..df135d76 100644 --- a/templates/client/wizard/third_step.html +++ b/templates/client/wizard/third_step.html @@ -2,114 +2,147 @@ {% block styles %} - + {% endblock %} {% block content_list %} + {{ wizard.form.media }} - -
    -

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

    -
    - -
    - -
    -
    -

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

    - -
    +
    +

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

    -
    -
    -

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

    - -
    -
    -
    -
    -

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

    -
    -
    + 1,2 балла к рейтингу
    -
    -
    +
    {% 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 }} +
      + +
      +

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

      +
      +
      -
      - -
      +
      -
      -{% endcomment %} + + + cnt +=1 ; + document.getElementById('list').insertBefore(div, null); + }; + })(f); + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + + document.getElementById('files').addEventListener('change', handleFileSelect, false); + {% endblock %} \ No newline at end of file diff --git a/wizard/forms.py b/wizard/forms.py index c71149ec..c65a248a 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -4,6 +4,8 @@ from theme.models import Theme, Tag from place_exposition.models import PlaceExposition from city.models import City 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 года'), ( @@ -64,3 +66,10 @@ class ExpoForm2(forms.Form): deadline_date = forms.DateField(widget=forms.TextInput(attrs={'placeholder':'дд.мм.гг'})) +class ExpoForm3(forms.Form): + attachments = MultiFileField(min_num=0, max_num=2, max_file_size=1024*1024*5, widget=MultiFileInput( + attrs={'class':'button big icon-camera', 'value':u'выберите фотографии', 'id':'files'} + )) + + +formlist = [ExpoForm1, ExpoForm2, ExpoForm3] \ No newline at end of file diff --git a/wizard/models.py b/wizard/models.py index 71a83623..74b18b8a 100644 --- a/wizard/models.py +++ b/wizard/models.py @@ -1,3 +1,8 @@ from django.db import models - +from django.conf import settings +import os # Create your models here. + + +class Attachment(models.Model): + file = models.FileField(upload_to=os.path.join(settings.MEDIA_ROOT,'attachments_files')) \ No newline at end of file diff --git a/wizard/urls.py b/wizard/urls.py index 4140c730..6bd3e9eb 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,9 +1,8 @@ from django.conf.urls import patterns, url, include -from wizard.forms import ExpoForm1, ExpoForm2 -from wizard.views import ExpoWizard, add_photo_view +from wizard.views import wizard_view urlpatterns = patterns('', - url(r'^add-photo/', add_photo_view, name="add-photo"), - url(r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) + url(r'^ajax/$', 'wizard.views.ajax_view'), + url(r'^$', wizard_view) ) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py index 34203aa4..df29d8f8 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -1,65 +1,84 @@ -from django.shortcuts import render_to_response, render from django.contrib.formtools.wizard.views import SessionWizardView from django.core.files.storage import FileSystemStorage +from django.http import HttpResponseRedirect +from django.conf import settings + import os -from proj import settings -from wizard import forms +from photologue.models import Photo, Gallery from exposition.models import Exposition, Statistic +from wizard.models import Attachment from functions.form_check import translit_with_separator -from django.http import HttpResponseRedirect # 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' +} +post = None +files = None + +# 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') + + location = os.path.join(settings.MEDIA_ROOT, 'temp') file_storage = FileSystemStorage(location, settings.MEDIA_URL) def done(self, form_list, **kwargs): - upload_file = form_list[0].cleaned_data['logo'] + 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 + + expo = Exposition.objects.language(self.request.LANGUAGE_CODE).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=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 ) + + 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 = [data.get('tag')] expo.theme = [data.get('theme')] 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) @@ -71,39 +90,34 @@ class ExpoWizard(SessionWizardView): 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') + 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 HttpResponseRedirect("add-photo") - # return render_to_response('done.html', { - # 'form_data': [form.cleaned_data for form in form_list], - # }) + 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('/') def get_template_names(self): return [TEMPLATES[self.steps.current]] -from django.core.context_processors import csrf -import logging -loger = logging.getLogger(__name__) -PATH_TO_FILE = os.path.join(settings.MEDIA_ROOT, 'exposition_foto/') +from wizard.forms import formlist +wizard_view = ExpoWizard.as_view(formlist) +from django.contrib.formtools.wizard.storage.session import SessionStorage +from django.http import HttpResponse +import json -def add_photo_view(request): - if request.POST: - for key, file in request.FILES.items(): - loger.debug(key) - loger.debug(len(request.FILES)) - context = {} - context.update(csrf(request)) - return render(request, "client/wizard/third_step.html", context) \ No newline at end of file +def ajax_view(request): + form = formlist[2](post, files, prefix='2') + return HttpResponse(json.dumps({'posts':post,'files':files}), content_type='application/json') From d51968c26888f32e90d09aafc51a1bbb3bba0c47 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Tue, 1 Sep 2015 16:35:59 +0300 Subject: [PATCH 05/16] Solved problems with saving of translatable models(Page, SeoText) --- core/models.py | 4 ++-- meta/models.py | 5 ++--- proj/settings.py | 1 + 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/models.py b/core/models.py index 268a7009..7d302d93 100644 --- a/core/models.py +++ b/core/models.py @@ -130,8 +130,8 @@ class Page(TranslatableModel): 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.save_translations(self) + def __unicode__(self): return self.url diff --git a/meta/models.py b/meta/models.py index c3be90d8..101545b2 100644 --- a/meta/models.py +++ b/meta/models.py @@ -164,7 +164,7 @@ class SeoText(TranslatableModel): 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']: + if field_name not in ['master', 'master_id', 'id', 'language_code']: clear_f_n.append(field_name) field_items = {field_name:getattr(self, field_name) for field_name in clear_f_n} @@ -174,8 +174,7 @@ class SeoText(TranslatableModel): self.translate(lang) for field in clear_f_n: setattr(self, field, field_items.get(field, '')) - super(SeoText,self).save(*args, **kwargs) - return SeoText + self.save_translations(self) def __unicode__(self): return self.url diff --git a/proj/settings.py b/proj/settings.py index ed02b25d..0c08d6b9 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -354,6 +354,7 @@ INSTALLED_APPS = ( 'django_crontab', # crons 'social.apps.django_app.default', # social auth 'core', + 'wizard' ) From 3b2fd70e5b1131b9e691b175c8ab7fd9a89dbca6 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Wed, 2 Sep 2015 15:35:54 +0300 Subject: [PATCH 06/16] minor bug fix --- exposition/models.py | 2 + meta/admin.py | 12 ++--- meta/admin_urls.py | 11 ++-- meta/forms.py | 10 ++-- meta/models.py | 7 ++- meta/views.py | 10 ++-- proj/views.py | 2 + templates/client/includes/seo_text.html | 2 +- wizard/models.py | 8 --- wizard/urls.py | 2 +- wizard/views.py | 69 +++++++++++++------------ 11 files changed, 60 insertions(+), 75 deletions(-) diff --git a/exposition/models.py b/exposition/models.py index dce42537..950c36f8 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, 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..641845f4 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): @@ -48,10 +50,6 @@ class MetaFilterForm(AdminFilterForm): model = MetaSetting -from .models import SeoText -from ckeditor.widgets import CKEditorWidget -from hvad.forms import TranslatableModelForm - class SeoTextForm(TranslatableModelForm): class Meta: diff --git a/meta/models.py b/meta/models.py index 101545b2..504207f9 100644 --- a/meta/models.py +++ b/meta/models.py @@ -135,13 +135,12 @@ class SeoTextManager(TranslationManager): key = 'seo_text_cache' result = cache.get(key) if result: - return result.get(lang+'_' + url) + return result.get("%s_%s" % (lang, url)) qs = 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): diff --git a/meta/views.py b/meta/views.py index 28d30eba..f8639343 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 diff --git a/proj/views.py b/proj/views.py index 0db0e5bd..da14db80 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/templates/client/includes/seo_text.html b/templates/client/includes/seo_text.html index 46773696..833c8d87 100644 --- a/templates/client/includes/seo_text.html +++ b/templates/client/includes/seo_text.html @@ -1,3 +1,3 @@ -
      +

      {{ object.title }}

      {{ object.body|safe }}
      \ No newline at end of file diff --git a/wizard/models.py b/wizard/models.py index 74b18b8a..e69de29b 100644 --- a/wizard/models.py +++ b/wizard/models.py @@ -1,8 +0,0 @@ -from django.db import models -from django.conf import settings -import os -# Create your models here. - - -class Attachment(models.Model): - file = models.FileField(upload_to=os.path.join(settings.MEDIA_ROOT,'attachments_files')) \ No newline at end of file diff --git a/wizard/urls.py b/wizard/urls.py index 6bd3e9eb..4ae424d2 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -3,6 +3,6 @@ from django.conf.urls import patterns, url, include from wizard.views import wizard_view urlpatterns = patterns('', - url(r'^ajax/$', 'wizard.views.ajax_view'), + # url(r'^ajax/$', 'wizard.views.ajax_view'), url(r'^$', wizard_view) ) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py index df29d8f8..9a9b21ea 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -4,10 +4,10 @@ from django.http import HttpResponseRedirect from django.conf import settings import os -from photologue.models import Photo, Gallery +from photologue.models import Photo from exposition.models import Exposition, Statistic -from wizard.models import Attachment from functions.form_check import translit_with_separator +from accounts.models import User # defining different template for every form @@ -16,20 +16,26 @@ TEMPLATES = { '1': 'client/wizard/second_step.html', '2': 'client/wizard/third_step.html' } -post = None -files = None -# main view that handle all data from 3 forms(steps) and finally create an Exposition class ExpoWizard(SessionWizardView): + "main view that handle all data from 3 forms(steps) and finally create an Exposition" + + # storing temporary files during upload location = os.path.join(settings.MEDIA_ROOT, 'temp') file_storage = FileSystemStorage(location, settings.MEDIA_URL) + SUCCES_URL = "/" + + def get_template_names(self): + return [TEMPLATES[self.steps.current]] def done(self, form_list, **kwargs): + # 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() - + + # creating new exposition expo = Exposition.objects.language(self.request.LANGUAGE_CODE).create( name=data.get('name'), data_begin=data.get('date_start'), @@ -59,9 +65,10 @@ class ExpoWizard(SessionWizardView): min_closed_equipped_area=data.get('equiped'), url=translit_with_separator(data.get('name')), quality_label=0, - audience=0 + audience=0, + creator = User.objects.get(id=self.request.user.id) ) - + # adding photo to gallery photos = [] for i, photo in enumerate(upload_images): photos.append(Photo.objects.language(self.request.LANGUAGE_CODE).create( @@ -71,25 +78,16 @@ class ExpoWizard(SessionWizardView): for photo in photos: expo.upload_photo(photo) + # many to many relations saving expo.tag = [data.get('tag')] expo.theme = [data.get('theme')] - if data['membership1']: - expo.quality_label = (expo.quality_label | Exposition.quality_label.exporating) - if data['membership2']: - expo.quality_label = (expo.quality_label | Exposition.quality_label.rsva) - if data['membership3']: - expo.quality_label = (expo.quality_label | Exposition.quality_label.ufi) - - if data['audience1']: - expo.audience = (expo.audience | Exposition.audience.experts) - if data['audience2']: - expo.audience = expo.audience | getattr(Exposition.audience, 'experts and consumers') - if data['audience3']: - expo.audience = expo.audience | (getattr(Exposition.audience, 'general public')) + # setting bit fields audience and quality_label + self.set_flags(expo, data) expo.save() - Statistic.objects.language().create( + # ? + Statistic.objects.language(self.request.LANGUAGE_CODE).create( exposition=expo, year=data.get('statistic_year'), visitors=data.get('visitors'), @@ -98,26 +96,31 @@ class ExpoWizard(SessionWizardView): area=data.get('square') ) + # 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('/') - def get_template_names(self): - return [TEMPLATES[self.steps.current]] + return HttpResponseRedirect(self.SUCCES_URL) + def set_flags(self, expo, data): + if data['membership1']: + expo.quality_label = (expo.quality_label | Exposition.quality_label.exporating) + if data['membership2']: + expo.quality_label = (expo.quality_label | Exposition.quality_label.rsva) + if data['membership3']: + expo.quality_label = (expo.quality_label | Exposition.quality_label.ufi) + + if data['audience1']: + expo.audience = (expo.audience | Exposition.audience.experts) + if data['audience2']: + expo.audience = expo.audience | getattr(Exposition.audience, 'experts and consumers') + if data['audience3']: + expo.audience = expo.audience | (getattr(Exposition.audience, 'general public')) from wizard.forms import formlist wizard_view = ExpoWizard.as_view(formlist) - -from django.contrib.formtools.wizard.storage.session import SessionStorage -from django.http import HttpResponse -import json - -def ajax_view(request): - form = formlist[2](post, files, prefix='2') - return HttpResponse(json.dumps({'posts':post,'files':files}), content_type='application/json') From 28aec988e16b2df6a1960532fb16c0397c709e75 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Wed, 2 Sep 2015 17:58:02 +0300 Subject: [PATCH 07/16] deleted static/client --- meta/models.py | 6 +++--- templates/admin/meta/create_seo_text.html | 2 +- wizard/forms.py | 17 +++++++++++------ 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/meta/models.py b/meta/models.py index 5dd80db9..2079be66 100644 --- a/meta/models.py +++ b/meta/models.py @@ -144,11 +144,11 @@ class SeoTextManager(TranslationManager): class SeoText(TranslatableModel): - url = models.CharField(max_length=50, unique=True) + url = models.CharField(max_length=50, unique=True, verbose_name=u"URL: expomap.ru") translations = TranslatedFields( - title=models.CharField(max_length=255), - body=models.TextField() + title=models.CharField(max_length=255, verbose_name=u"Заголовок"), + body=models.TextField(verbose_name=u"Текст") ) objects = SeoTextManager() diff --git a/templates/admin/meta/create_seo_text.html b/templates/admin/meta/create_seo_text.html index d11af3d7..a18a44c5 100644 --- a/templates/admin/meta/create_seo_text.html +++ b/templates/admin/meta/create_seo_text.html @@ -29,7 +29,7 @@
      {{ form.langs }} - {{ form.url }} + {{ form.url }} {{ form.url.errors }}
      diff --git a/wizard/forms.py b/wizard/forms.py index c65a248a..e77ee6a8 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -11,25 +11,30 @@ choices = ((0, ''), (1.0, u'Ежегодно'), (2.0, u'2 раза в год'), (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 """ - 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)) + + country = forms.ChoiceField(label=u'Страна', choices=[(c.id, c.name) for c in Country.objects.all()]) + theme = forms.MultipleChoiceField(label='Тематики', choices=[(item.id, item.name) for item in Theme.objects.language().all()]) + place = forms.ChoiceField(label=u'Место проведения', required=False, choices=places) + city = forms.CharField(label=u'Город', widget=forms.HiddenInput()) + tag = forms.CharField(label=u'Теги', widget=forms.HiddenInput(), required=False) + audience1 = forms.BooleanField(required=False) audience2 = forms.BooleanField(required=False) audience3 = forms.BooleanField(required=False) - periodic = forms.ChoiceField(choices=choices) + periodic = forms.ChoiceField(choices=choices, required=False, widget=forms.Select(attrs={'placeholder':u'Периодичность'})) membership1= forms.BooleanField(required=False) membership2= forms.BooleanField(required=False) membership3= forms.BooleanField(required=False) From e7a5a039ad7eb2c65a21792806fba8ddefa0b658 Mon Sep 17 00:00:00 2001 From: re0ne Date: Fri, 4 Sep 2015 18:17:40 +0300 Subject: [PATCH 08/16] Minor fixes --- .../client/static_client/js/_modules/block.exposition.list.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'); } From c6e45fbe3ba3be37b68d444d9e75b07d207ebf7d Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Tue, 8 Sep 2015 14:47:55 +0300 Subject: [PATCH 09/16] Exclude Statistic from form wizard, make some 'friendly' UI for selects, cheking for organiser to add exposition --- accounts/models.py | 3 + core/models.py | 46 ++++-- meta/forms.py | 7 +- meta/models.py | 53 +++---- meta/views.py | 1 + static/custom_js/place_city_ajax.js | 1 - static/custom_js/wizard.js | 167 ++++++++++++++++++++++ templates/admin/meta/create_seo_text.html | 16 +++ templates/client/blank.html | 5 +- templates/client/includes/header.html | 5 +- templates/client/includes/meta.html | 5 +- templates/client/wizard/first_step.html | 69 ++++----- templates/client/wizard/second_step.html | 71 ++------- wizard/forms.py | 35 ++--- wizard/urls.py | 11 +- wizard/views.py | 63 ++++---- 16 files changed, 359 insertions(+), 199 deletions(-) create mode 100644 static/custom_js/wizard.js 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/models.py b/core/models.py index 6d20823b..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,22 +114,38 @@ 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 = list(set(all_field_names) - {'master', 'master_id', 'id', 'language_code'}) - field_items = {} - for fname in clear_f_n: - field_items[fname] = getattr(self, fname) - - langs = [lan[0] for lan in settings.LANGUAGES] - for lang in langs: - if lang not in self.get_available_languages(): - self.translate(lang) - for key, value in field_items.items(): - setattr(self, key, value) - self.save_translations(self) + 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): diff --git a/meta/forms.py b/meta/forms.py index 641845f4..fd3c009a 100644 --- a/meta/forms.py +++ b/meta/forms.py @@ -46,13 +46,14 @@ class MetaForm(forms.Form): fill_with_signal(MetaSetting, meta, data) meta.save() + class MetaFilterForm(AdminFilterForm): model = MetaSetting 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 a8037849..98c6c5cd 100644 --- a/meta/models.py +++ b/meta/models.py @@ -142,11 +142,12 @@ class SeoTextManager(TranslationManager): class SeoText(TranslatableModel): - cache_fields = ['title', 'body'] - url = models.CharField(max_length=50, unique=True, verbose_name=u"URL: expomap.ru") + url = models.CharField(max_length=50, unique=True, verbose_name=u"URL: www.expomap.ru") translations = TranslatedFields( 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"Текст") ) @@ -154,36 +155,38 @@ class SeoText(TranslatableModel): def __init__(self, *args, **kwargs): super(SeoText, self).__init__(*args, **kwargs) + self.cache_fields = ['title', 'body', 'page_title', 'description'] self.is_new = True - self.var_cache = {var: copy.copy(getattr(self, var)) for var in SeoText.cache_fields} def get_absolute_url(self): - return reverse_lazy('seo_all') + return self.url def save(self, *args, **kwargs): - init_lang = self.language_code - self.is_new = bool(self.id) - if not self.is_new: super(SeoText, self).save(*args, **kwargs) - - field_items = {} - for fname in self.cache_fields: - field_items[fname] = getattr(self, fname) - - langs = [l[0] for l in settings.LANGUAGES] - for lang in langs: - if lang not in self.get_available_languages(): - self.translate(lang) - for key, value in field_items.items(): - if getattr(self, key) is '' or getattr(self, key) is self.var_cache[key]: + 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) - - if self.is_new: self.save_translations(self) - else: - super(SeoText, self).save(*args, **kwargs) - - self.translate(init_lang) - self.var_cache = {var: copy.copy(getattr(self, var)) for var in SeoText.cache_fields} + 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): diff --git a/meta/views.py b/meta/views.py index f8639343..81db7390 100644 --- a/meta/views.py +++ b/meta/views.py @@ -208,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/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/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/meta/create_seo_text.html b/templates/admin/meta/create_seo_text.html index a18a44c5..04182684 100644 --- a/templates/admin/meta/create_seo_text.html +++ b/templates/admin/meta/create_seo_text.html @@ -41,6 +41,22 @@ {{ form.title.errors }}
      + {# page title #} +
      + +
      + {{ form.page_title }} + {{ form.page_title.errors }} +
      +
      + {# description #} +
      + +
      + {{ form.description }} + {{ form.description.errors }} +
      +
      {# body #}
      diff --git a/templates/client/blank.html b/templates/client/blank.html index 1be9b75a..95057c82 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/wizard/first_step.html b/templates/client/wizard/first_step.html index b71e8518..e216aecb 100644 --- a/templates/client/wizard/first_step.html +++ b/templates/client/wizard/first_step.html @@ -1,4 +1,10 @@ {% extends 'client/base_catalog.html' %} +{% load static %} + +{% block head_scripts %} + + +{% endblock %} {% block content_list %} {{ form.errors }} @@ -8,14 +14,8 @@ {{ wizard.form.media }}

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

      -
      {% csrf_token %} + {% 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 %}
      @@ -77,14 +77,14 @@
      -

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

      +

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

      {{ form.place }}
      -

      Страна:

      +

      Страна:

      {{ form.country }}
      @@ -107,13 +107,14 @@
      - -
      + Периодичность: {{ form.periodic }}
      @@ -127,9 +128,9 @@
      - - - + + +
      @@ -150,12 +151,6 @@
      - {#
      #} - {# #} - {#
      #} -
      {{ form.time_start }} @@ -165,10 +160,7 @@ {{ form.time_end }}
      - - {# #}
      -
      @@ -195,24 +187,23 @@
      -
      + {% endwith %} -
      +
      -
      -
      -

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

      -
      -
      +
      +
      +

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

      +
      +
      -
      -
      -

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

      -
      -
      +
      +
      +

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

      +
      +
      -
      -
      - {# {% endif %}#} +
      +
      {% endblock %} diff --git a/templates/client/wizard/second_step.html b/templates/client/wizard/second_step.html index dcd78540..90018852 100644 --- a/templates/client/wizard/second_step.html +++ b/templates/client/wizard/second_step.html @@ -1,4 +1,19 @@ {% extends 'client/base_catalog.html' %} +{% load static %} + + +{% block head_scripts %} + + +{% endblock %} + {% block content_list %} {{ form.errors }} @@ -51,62 +66,6 @@
      -
      - -
      - -
      - - -
      - -
      - {{ form.statistic_year }} -
      - -
      - -
      - {{ form.visitors }} -
      - -
      - {{ form.partisipants }} -
      - -
      - {{ form.square }} - м² -
      -
      - -
      -
      - -
      - - -
      - -
      -
      -
      -
      - {{ form.countries }} -
      -
      -
      -
      -
      - -
      - - - -
      -

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

      diff --git a/wizard/forms.py b/wizard/forms.py index e77ee6a8..c2e76b1b 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- from django import forms -from theme.models import Theme, Tag +from theme.models import Theme from place_exposition.models import PlaceExposition -from city.models import City from country.models import Country from multiupload.fields import MultiFileField, MultiFileInput @@ -25,19 +24,19 @@ class ExpoForm1(forms.Form): 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()]) - theme = forms.MultipleChoiceField(label='Тематики', choices=[(item.id, item.name) for item in Theme.objects.language().all()]) - place = forms.ChoiceField(label=u'Место проведения', required=False, choices=places) - city = forms.CharField(label=u'Город', widget=forms.HiddenInput()) - tag = forms.CharField(label=u'Теги', widget=forms.HiddenInput(), required=False) + 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, widget=forms.Select(attrs={'placeholder':u'Периодичность'})) - membership1= forms.BooleanField(required=False) - membership2= forms.BooleanField(required=False) - membership3= 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() @@ -50,12 +49,6 @@ 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':'на все дни'})) @@ -72,9 +65,11 @@ class ExpoForm2(forms.Form): class ExpoForm3(forms.Form): - attachments = MultiFileField(min_num=0, max_num=2, max_file_size=1024*1024*5, widget=MultiFileInput( - attrs={'class':'button big icon-camera', 'value':u'выберите фотографии', 'id':'files'} + """ + 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'} )) -formlist = [ExpoForm1, ExpoForm2, ExpoForm3] \ No newline at end of file diff --git a/wizard/urls.py b/wizard/urls.py index 4ae424d2..527cd96d 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,8 +1,7 @@ -from django.conf.urls import patterns, url, include +from django.conf.urls import patterns, url +from .views import ExpoWizard +from .forms import ExpoForm1, ExpoForm2,ExpoForm3 -from wizard.views import wizard_view +formlist = [ExpoForm1,ExpoForm2, ExpoForm3] -urlpatterns = patterns('', - # url(r'^ajax/$', 'wizard.views.ajax_view'), - url(r'^$', wizard_view) -) \ No newline at end of file +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 9a9b21ea..01dadcac 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -1,13 +1,27 @@ from django.contrib.formtools.wizard.views import SessionWizardView from django.core.files.storage import FileSystemStorage -from django.http import HttpResponseRedirect +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 photologue.models import Photo -from exposition.models import Exposition, Statistic +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 @@ -17,14 +31,15 @@ TEMPLATES = { '2': 'client/wizard/third_step.html' } -class ExpoWizard(SessionWizardView): - "main view that handle all data from 3 forms(steps) and finally create an Exposition" +class ExpoWizard(LoginRequiredMixin, SessionWizardView): + + """main view that handle all data from 3 forms(steps) and finally create an Exposition""" # storing temporary files during upload location = os.path.join(settings.MEDIA_ROOT, 'temp') file_storage = FileSystemStorage(location, settings.MEDIA_URL) - SUCCES_URL = "/" + SUCCESS_URL = "/" def get_template_names(self): return [TEMPLATES[self.steps.current]] @@ -36,16 +51,19 @@ class ExpoWizard(SessionWizardView): data = self.get_all_cleaned_data() # creating new exposition - expo = Exposition.objects.language(self.request.LANGUAGE_CODE).create( + 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=data.get('country', 1), - city=data.get('city', 1), - place=data.get('place', 1), + + 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'), @@ -66,7 +84,7 @@ class ExpoWizard(SessionWizardView): url=translit_with_separator(data.get('name')), quality_label=0, audience=0, - creator = User.objects.get(id=self.request.user.id) + creator=User.objects.get(id=self.request.user.id) ) # adding photo to gallery photos = [] @@ -78,24 +96,13 @@ class ExpoWizard(SessionWizardView): for photo in photos: expo.upload_photo(photo) - # many to many relations saving - expo.tag = [data.get('tag')] - expo.theme = [data.get('theme')] + 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() - # ? - Statistic.objects.language(self.request.LANGUAGE_CODE).create( - exposition=expo, - year=data.get('statistic_year'), - visitors=data.get('visitors'), - members=data.get('partisipants'), - countries=data.get('countries'), - area=data.get('square') - ) - # remove temporary files if it has any if upload_logo: self.file_storage.delete(upload_logo.name) @@ -103,11 +110,10 @@ class ExpoWizard(SessionWizardView): for f in upload_images: self.file_storage.delete(f.name) - return HttpResponseRedirect(self.SUCCES_URL) - + return HttpResponseRedirect(self.SUCCESS_URL) - - def set_flags(self, expo, data): + @staticmethod + def set_flags(expo, data): if data['membership1']: expo.quality_label = (expo.quality_label | Exposition.quality_label.exporating) if data['membership2']: @@ -122,5 +128,4 @@ class ExpoWizard(SessionWizardView): if data['audience3']: expo.audience = expo.audience | (getattr(Exposition.audience, 'general public')) -from wizard.forms import formlist -wizard_view = ExpoWizard.as_view(formlist) + From e6b13e0f67ef967e8255b7aa98b2d5f79d28b356 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Tue, 8 Sep 2015 15:19:03 +0300 Subject: [PATCH 10/16] solved bug with adding theme error --- theme/models.py | 1 - 1 file changed, 1 deletion(-) 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) From d81ea6a43238436dab35297c7d7e2b65e77ead46 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Wed, 9 Sep 2015 19:00:33 +0300 Subject: [PATCH 11/16] some changes in xls calendar export --- core/utils.py | 17 +++++++---------- core/views.py | 35 +++++++++++++++++++++-------------- 2 files changed, 28 insertions(+), 24 deletions(-) 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 1c53d73d..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 @@ -253,34 +252,42 @@ class PageDetailed(DetailView): 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 From 9fe7370f267dbc6dc1e6484fc0546553fb25cd41 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Wed, 9 Sep 2015 19:02:02 +0300 Subject: [PATCH 12/16] added specialist catalog models and form. view only form specialist model, --- exposition/models.py | 13 --- proj/admin_urls.py | 1 + proj/settings.py | 3 +- specialist_catalog/__init__.py | 0 specialist_catalog/admin_urls.py | 11 +++ specialist_catalog/forms.py | 86 ++++++++++++++++++ specialist_catalog/models.py | 89 +++++++++++++++++++ specialist_catalog/tests.py | 16 ++++ specialist_catalog/urls.py | 6 ++ specialist_catalog/views.py | 30 +++++++ .../admin/specialist/specialist_all.html | 54 +++++++++++ .../specialist/specialist_confirm_delete.html | 11 +++ .../admin/specialist/specialist_new.html | 79 ++++++++++++++++ 13 files changed, 385 insertions(+), 14 deletions(-) create mode 100644 specialist_catalog/__init__.py create mode 100644 specialist_catalog/admin_urls.py create mode 100644 specialist_catalog/forms.py create mode 100644 specialist_catalog/models.py create mode 100644 specialist_catalog/tests.py create mode 100644 specialist_catalog/urls.py create mode 100644 specialist_catalog/views.py create mode 100644 templates/admin/specialist/specialist_all.html create mode 100644 templates/admin/specialist/specialist_confirm_delete.html create mode 100644 templates/admin/specialist/specialist_new.html diff --git a/exposition/models.py b/exposition/models.py index 36326f02..81474a3a 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -160,7 +160,6 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): paid_new = models.ForeignKey('expobanner.Paid', blank=True, null=True, on_delete=models.SET_NULL) top = models.ForeignKey('expobanner.Top', blank=True, null=True, on_delete=models.SET_NULL) - main = models.ForeignKey('expobanner.MainPage', blank=True, null=True, on_delete=models.SET_NULL) #set manager of this model(fisrt manager is default) objects = ExpoManager() enable = ClientManager() @@ -309,18 +308,6 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): def theme_ids(self): return [item['id'] for item in self.theme.all().values('id')] - def get_main_link(self): - if self.main: - return self.main.link.get_click_link() - else: - return self.get_permanent_url() - - def get_top_link(self): - if self.top: - return self.top.link.get_click_link() - else: - return self.get_permanent_url() - class Statistic(TranslatableModel): exposition = models.ForeignKey(Exposition, related_name='statistic') 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/settings.py b/proj/settings.py index 0a679246..863a6fa8 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -353,7 +353,8 @@ INSTALLED_APPS = ( 'password_reset', # reset password 'social.apps.django_app.default', # social auth 'core', - 'wizard' + 'wizard', + 'specialist_catalog', ) 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..9e3c71d8 --- /dev/null +++ b/specialist_catalog/admin_urls.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import url, patterns +from .views import * + +urlpaterns = 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'), + +) \ No newline at end of file diff --git a/specialist_catalog/forms.py b/specialist_catalog/forms.py new file mode 100644 index 00000000..27a469e5 --- /dev/null +++ b/specialist_catalog/forms.py @@ -0,0 +1,86 @@ +# -*- 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 = '__all__' + 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, + } + + def clean_city(self): + data = self.cleaned_data + if data.get('city'): + data['city'] = City.objects.language(lang_code).get(id=data['city']) + return data + + def clean_country(self): + data = self.cleaned_data + if data.get('country'): + data['country'] = Country.objects.language(lang_code).get(id=data['country']) + return data + + 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 = '__all__' + widgets = { + 'city': forms.HiddenInput(attrs={'id': 'id_city'}), + 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}) + } + + def clean_city(self): + data = self.cleaned_data + if data.get('city'): + data['city'] = City.objects.language(lang_code).get(id=data['city']) + return data + + def clean_country(self): + data = self.cleaned_data + if data.get('country'): + data['country'] = Country.objects.language(lang_code).get(id=data['country']) + return data + + +class FeedbackForm(forms.ModelForm): + + class Meta: + model = Feedback + fields = '__all__' + widgets = { + 'text':CKEditorWidget + } \ No newline at end of file diff --git a/specialist_catalog/models.py b/specialist_catalog/models.py new file mode 100644 index 00000000..904ef1c5 --- /dev/null +++ b/specialist_catalog/models.py @@ -0,0 +1,89 @@ +# -*- coding: utf-8 -*- +from django.db import models +from django.conf import settings +from hvad.models import TranslatableModel, TranslatedFields, TranslationManager +from functions.form_check import translit_with_separator as tws +from city.models import City +from country.models import Country +from django.core.urlresolvers import reverse_lazy +import copy + + +# types of catalog +_country = 1 +_city = 2 + + +class Specialist(models.Model): + name = models.CharField(max_length=255, verbose_name=u"Полное имя") + languages = models.CharField(max_length=255, verbose_name=u"Языки") + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город") + 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) + + +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"Город") + country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") + 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"Преимущества") + ) + + 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', tws(self.country.name)) + else: + return reverse_lazy('spec_catalog_city', tws(self.city.name)) + + def save(self, *args, **kwargs): + super(SpecialistCatalog, 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(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 + + +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"Страница") + + 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..e4fb7c7b --- /dev/null +++ b/specialist_catalog/urls.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import url, patterns +from .views import * + +urlpaterns = patterns('', +) \ No newline at end of file diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py new file mode 100644 index 00000000..68c87f24 --- /dev/null +++ b/specialist_catalog/views.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +from django.views.generic import CreateView, UpdateView, DeleteView, ListView, DetailView +from .forms import * +from django.core.urlresolvers import reverse + + +class SpecialistCreateView(CreateView): + form_class = SpecialistForm + model = Specialist + template_name = 'admin/specialist/specialist_new.html' + success_url = reverse("specialist_all") + + +class SpecialistListView(ListView): + model = Specialist + template_name = 'admin/specialist/specialist_all.html' + + +class SpecialistUpdateView(UpdateView): + form_class = SpecialistForm + model = Specialist + template_name = 'admin/specialist/specialist_new.html' + success_url = reverse("specialist_all") + + +class SpecialistDeleteView(DeleteView): + model = Specialist + template_name = 'admin/specialist/specialist_confirm_delete.html' + success_url = reverse("specialist_all") + diff --git a/templates/admin/specialist/specialist_all.html b/templates/admin/specialist/specialist_all.html new file mode 100644 index 00000000..b4c33f27 --- /dev/null +++ b/templates/admin/specialist/specialist_all.html @@ -0,0 +1,54 @@ +{% extends 'base.html' %} +{% block body %} +
      +
      +

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

      +
      +
      + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + {% endfor %} + +
      ИмяЗаголовок 
      {{ item.url }}{{ item.title }} + + Изменить + + + + Удалить + +
      + + Добавить seo-текст +
      + + +
      +{% 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..90cc492c --- /dev/null +++ b/templates/admin/specialist/specialist_confirm_delete.html @@ -0,0 +1,11 @@ +{% 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/specialist/specialist_new.html b/templates/admin/specialist/specialist_new.html new file mode 100644 index 00000000..04182684 --- /dev/null +++ b/templates/admin/specialist/specialist_new.html @@ -0,0 +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 }} +
      +
      + {# page title #} +
      + +
      + {{ form.page_title }} + {{ form.page_title.errors }} +
      +
      + {# description #} +
      + +
      + {{ form.description }} + {{ form.description.errors }} +
      +
      + {# body #} +
      + +
      + {{ form.body }} + {{ form.body.errors }} +
      +
      +
      +
      + +
      + + + +
      +
      +
      + +{% endblock %} From fa2d0a313a67e363a42c9703cfd029e7ab0aa225 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 10 Sep 2015 17:56:05 +0300 Subject: [PATCH 13/16] added views, urls and templates for specialist catalog and feedback --- specialist_catalog/admin_urls.py | 11 +- specialist_catalog/forms.py | 31 +-- specialist_catalog/models.py | 9 +- specialist_catalog/views.py | 79 ++++++- static/custom_js/specialist.js | 93 +++++++++ static/custom_js/specialist_catalog.js | 120 +++++++++++ templates/admin/specialist/catalog_all.html | 62 ++++++ .../specialist/catalog_confirm_delete.html | 11 + templates/admin/specialist/catalog_new.html | 195 ++++++++++++++++++ templates/admin/specialist/feedback_all.html | 62 ++++++ .../specialist/feedback_confirm_delete.html | 11 + templates/admin/specialist/feedback_new.html | 79 +++++++ .../admin/specialist/specialist_all.html | 22 +- .../specialist/specialist_confirm_delete.html | 4 +- .../admin/specialist/specialist_new.html | 80 +++---- 15 files changed, 784 insertions(+), 85 deletions(-) create mode 100644 static/custom_js/specialist.js create mode 100644 static/custom_js/specialist_catalog.js create mode 100644 templates/admin/specialist/catalog_all.html create mode 100644 templates/admin/specialist/catalog_confirm_delete.html create mode 100644 templates/admin/specialist/catalog_new.html create mode 100644 templates/admin/specialist/feedback_all.html create mode 100644 templates/admin/specialist/feedback_confirm_delete.html create mode 100644 templates/admin/specialist/feedback_new.html diff --git a/specialist_catalog/admin_urls.py b/specialist_catalog/admin_urls.py index 9e3c71d8..e80e6fb9 100644 --- a/specialist_catalog/admin_urls.py +++ b/specialist_catalog/admin_urls.py @@ -2,10 +2,17 @@ from django.conf.urls import url, patterns from .views import * -urlpaterns = patterns('', +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/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 index 27a469e5..026a6c3f 100644 --- a/specialist_catalog/forms.py +++ b/specialist_catalog/forms.py @@ -22,7 +22,8 @@ class SpecialistCatalogForm(TranslatableModelForm): class Meta: model = SpecialistCatalog - fields = '__all__' + fields = ['price', 'currency', 'logo_preview', 'main_descr', 'place_photo', + 'specialists', 'city', 'country', 'type', 'title', 'benefits'] widgets = { 'type': forms.Select(choices=(('1', 'Country'), ('2', 'City'))), 'city': forms.HiddenInput(attrs={'id': 'id_city'}), @@ -31,18 +32,6 @@ class SpecialistCatalogForm(TranslatableModelForm): 'benefits': CKEditorWidget, } - def clean_city(self): - data = self.cleaned_data - if data.get('city'): - data['city'] = City.objects.language(lang_code).get(id=data['city']) - return data - - def clean_country(self): - data = self.cleaned_data - if data.get('country'): - data['country'] = Country.objects.language(lang_code).get(id=data['country']) - return data - def save(self, commit=True): place = self.cleaned_data.get('city') or self.cleaned_data.get('country') place_inflect = place.inflect or place.name @@ -57,30 +46,18 @@ class SpecialistForm(forms.ModelForm): class Meta: model = Specialist - fields = '__all__' + fields = ['name','country', 'city', 'photo', 'languages'] widgets = { 'city': forms.HiddenInput(attrs={'id': 'id_city'}), 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}) } - def clean_city(self): - data = self.cleaned_data - if data.get('city'): - data['city'] = City.objects.language(lang_code).get(id=data['city']) - return data - - def clean_country(self): - data = self.cleaned_data - if data.get('country'): - data['country'] = Country.objects.language(lang_code).get(id=data['country']) - return data - class FeedbackForm(forms.ModelForm): class Meta: model = Feedback - fields = '__all__' + fields = ['company', 'name', 'text', 'logo', 'catalog'] widgets = { 'text':CKEditorWidget } \ No newline at end of file diff --git a/specialist_catalog/models.py b/specialist_catalog/models.py index 904ef1c5..8c32eb9d 100644 --- a/specialist_catalog/models.py +++ b/specialist_catalog/models.py @@ -21,12 +21,15 @@ class Specialist(models.Model): 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/') + 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"Город") country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") @@ -83,7 +86,7 @@ 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) + logo = models.ImageField(verbose_name=u"Логотип компании", upload_to='specialist_catalog/feedback_logo/', blank=True) catalog = models.ForeignKey(SpecialistCatalog, verbose_name=u"Страница") diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py index 68c87f24..01382c7c 100644 --- a/specialist_catalog/views.py +++ b/specialist_catalog/views.py @@ -1,30 +1,101 @@ # -*- coding: utf-8 -*- from django.views.generic import CreateView, UpdateView, DeleteView, ListView, DetailView from .forms import * -from django.core.urlresolvers import reverse +from django.core.urlresolvers import reverse_lazy +from django.conf import settings +from django.shortcuts import get_object_or_404 class SpecialistCreateView(CreateView): form_class = SpecialistForm model = Specialist template_name = 'admin/specialist/specialist_new.html' - success_url = reverse("specialist_all") + 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("specialist_all") + 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("specialist_all") + success_url = reverse_lazy("specialist_all") + + +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 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") + + +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('pk')) + return {'catalog': catalog} + +# class FeedbackListView(ListView): +# model = Feedback +# template_name = 'admin/specialist/feedback_all.html' +# paginate_by = settings.ADMIN_PAGINATION + + +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('id')) + return {'catalog': catalog} +class FeedbackDeleteView(DeleteView): + model = Feedback + template_name = 'admin/specialist/feedback_confirm_delete.html' + success_url = reverse_lazy("catalog_all") 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/templates/admin/specialist/catalog_all.html b/templates/admin/specialist/catalog_all.html new file mode 100644 index 00000000..73c42069 --- /dev/null +++ b/templates/admin/specialist/catalog_all.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% block body %} +
      +
      +

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

      +
      +
      + + + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + + + {% endfor %} + +
        ЗаголовокТипКоличество специалистов 
      + {% thumbnail item.logo_preview "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.title }}{% if item.type == 1%}Страна{% else %}Город{% 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..024a2911 --- /dev/null +++ b/templates/admin/specialist/catalog_new.html @@ -0,0 +1,195 @@ +{% 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 }} +
      +
      + + {# 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 index b4c33f27..7899d553 100644 --- a/templates/admin/specialist/specialist_all.html +++ b/templates/admin/specialist/specialist_all.html @@ -1,4 +1,5 @@ {% extends 'base.html' %} +{% load thumbnail %} {% block body %}
      @@ -9,8 +10,10 @@ + Фото Имя - Заголовок + Город + Языки   @@ -18,16 +21,21 @@ {% for item in object_list %} - {{ item.url }} - {{ item.title }} + + {% thumbnail item.photo "100x100" crop="center" as im %} + + {% endthumbnail %} + {{ item.name }} + {{ item.city.name }} + {{ item.languages }} - + Изменить - + Удалить @@ -35,8 +43,8 @@ {% endfor %} - - Добавить seo-текст + + Хочу еще
      + {# big_cities #} +
      + +
      + {{ form.big_cities }} + {{ form.big_cities.errors }} +
      +
      {# price #}
      @@ -156,7 +164,7 @@ {{ item.company }} {{ item.text }} - + Изменить @@ -189,7 +197,7 @@ {% endwith %} {% elif object.id %} Отзывов еще нет, - + Добавить {% endif %} {% endblock %} 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 From 72014cdf0243596388fee6da241328b4d15dc1ca Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Mon, 14 Sep 2015 16:42:43 +0300 Subject: [PATCH 15/16] refactor some views and filling db scripts --- specialist_catalog/management/__init__.py | 1 + .../management/commands/__init__.py | 1 + .../management/commands/create_city_page.py | 34 +++++++++++++ .../commands/create_country_page.py | 33 ++++++++++++ specialist_catalog/models.py | 22 ++++---- specialist_catalog/urls.py | 6 +-- specialist_catalog/views.py | 51 +++++-------------- 7 files changed, 96 insertions(+), 52 deletions(-) create mode 100644 specialist_catalog/management/__init__.py create mode 100644 specialist_catalog/management/commands/__init__.py create mode 100644 specialist_catalog/management/commands/create_city_page.py create mode 100644 specialist_catalog/management/commands/create_country_page.py 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 index 2d54cd4a..32fd0e35 100644 --- a/specialist_catalog/models.py +++ b/specialist_catalog/models.py @@ -2,22 +2,21 @@ from django.db import models from django.conf import settings from hvad.models import TranslatableModel, TranslatedFields, TranslationManager -from functions.form_check import translit_with_separator as tws 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"Полное имя") + 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"Город") + 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) @@ -31,8 +30,8 @@ class SpecialistCatalog(TranslatableModel): 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"Город") - country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") + 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( @@ -50,13 +49,12 @@ class SpecialistCatalog(TranslatableModel): def get_absolute_url(self): global _country, _city if self.type == _country: - return reverse_lazy('spec_catalog_country', kwargs={'slug':tws(self.country.name)}) - else: - return reverse_lazy('spec_catalog_city', kwargs={'slug':tws(self.city.name)}) + 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 = 'ru' + 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] @@ -68,7 +66,7 @@ class SpecialistCatalog(TranslatableModel): setattr(self, key, value) self.save_translations(self) else: - translations = {obj.language_code:obj for obj in list(self.translations.all())} + 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] @@ -91,7 +89,7 @@ class Feedback(models.Model): 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"Страница") + catalog = models.ForeignKey(SpecialistCatalog, verbose_name=u"Страница", blank=False) def __unicode__(self): return "Feedback from %s" % self.company diff --git a/specialist_catalog/urls.py b/specialist_catalog/urls.py index 47f45dd5..a79bb14b 100644 --- a/specialist_catalog/urls.py +++ b/specialist_catalog/urls.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- from django.conf.urls import url, patterns -from .views import CatalogDetailedCityView, CatalogDetailedCountryView +from .views import CatalogDetailedView urlpatterns = patterns('', - url(r'^city/(?P.*)/$', CatalogDetailedCityView.as_view(), name="spec_catalog_city"), - url(r'^country/(?P.*)/$', CatalogDetailedCountryView.as_view(), name="spec_catalog_country"), + 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 index 0dd43edb..36167693 100644 --- a/specialist_catalog/views.py +++ b/specialist_catalog/views.py @@ -7,7 +7,7 @@ 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 =========== @@ -131,56 +131,28 @@ class FeedbackDeleteView(DeleteView): success_url = reverse_lazy("catalog_all") -# class FeedbackListView(ListView): -# model = Feedback -# template_name = 'admin/specialist/feedback_all.html' -# paginate_by = settings.ADMIN_PAGINATION - # ========= CLIENT VIEWS ============ - -class CatalogDetailedCityView(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): - obj = self.model.objects.language().get(city__url=self.kwargs.get('slug')) - self.object = obj - return obj - - def get_context_data(self, **kwargs): - self.get_object() - context = super(CatalogDetailedCityView, 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() - return {'country':obj.country.name, 'city':obj.city.name} +lang = get_language()[:2] -class CatalogDetailedCountryView(SingleObjectMixin, FormView): +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): - obj = self.model.objects.language().get(country__url=self.kwargs.get('slug')) + 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(CatalogDetailedCountryView, self).get_context_data(**kwargs) + context = super(CatalogDetailedView, self).get_context_data(**kwargs) context['object'] = self.object return context @@ -191,4 +163,9 @@ class CatalogDetailedCountryView(SingleObjectMixin, FormView): def get_initial(self): obj = self.get_object() - return {'country':obj.country.name} \ No newline at end of file + init = {} + init['country'] = obj.country.name + if self.kwargs.get('type') is "city": + init['city'] = obj.city.name + return init + From 42034b8d9c1962f9ae40b02c220c5e567345a812 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 17 Sep 2015 14:40:33 +0300 Subject: [PATCH 16/16] expobanner: ordering by date(active), column 'at all' --- expobanner/admin.py | 39 ++++++++++++++++++++--- expobanner/forms.py | 2 +- expobanner/models.py | 9 ++++-- exposition/models.py | 16 ++++++++-- templates/admin/expobanner/main_list.html | 21 ++++++++++-- templates/admin/expobanner/main_stat.html | 10 +++++- templates/admin/expobanner/paid_list.html | 19 +++++++++-- templates/admin/expobanner/paid_stat.html | 7 ++++ templates/admin/expobanner/top_list.html | 15 ++++++++- 9 files changed, 120 insertions(+), 18 deletions(-) diff --git a/expobanner/admin.py b/expobanner/admin.py index 311c83f8..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): 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/models.py b/expobanner/models.py index 5acbdca1..2208fc9a 100644 --- a/expobanner/models.py +++ b/expobanner/models.py @@ -113,7 +113,6 @@ class Banner(models.Model, StatMixin): 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 @@ -206,6 +205,9 @@ class LogStat(models.Model): def __unicode__(self): return '%s - (%s)' % (self.banner, self.date) + class Meta: + ordering = ['-date'] + # ------------------ class Paid(models.Model, StatMixin): @@ -241,6 +243,9 @@ class PaidStat(models.Model): 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) @@ -266,6 +271,7 @@ class Top(models.Model, StatMixin): except IndexError: return None + class TopStat(models.Model): date = models.DateField() theme = models.ForeignKey('theme.Theme', blank=True, null=True) @@ -317,7 +323,6 @@ def generate_stat_pass(sender, **kwargs): 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/exposition/models.py b/exposition/models.py index 81474a3a..8a38e1a9 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -160,14 +160,12 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): paid_new = models.ForeignKey('expobanner.Paid', blank=True, null=True, on_delete=models.SET_NULL) top = models.ForeignKey('expobanner.Top', blank=True, null=True, on_delete=models.SET_NULL) + main = models.ForeignKey('expobanner.MainPage', blank=True, null=True, on_delete=models.SET_NULL) #set manager of this model(fisrt manager is default) objects = ExpoManager() enable = ClientManager() imports = ExpoImportManager() - - - def __unicode__(self): return self.lazy_translation_getter('name', unicode(self.pk)) @@ -308,6 +306,18 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): def theme_ids(self): return [item['id'] for item in self.theme.all().values('id')] + def get_main_link(self): + if self.main: + return self.main.link.get_click_link() + else: + return self.get_permanent_url() + + def get_top_link(self): + if self.top: + return self.top.link.get_click_link() + else: + return self.get_permanent_url() + class Statistic(TranslatableModel): exposition = models.ForeignKey(Exposition, related_name='statistic') 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