<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Survey</LimeSurveyDocType>
 <DBVersion>178</DBVersion>
 <languages>
  <language>en</language>
  <language>fa</language>
 </languages>
 <groups>
  <fields>
   <fieldname>gid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>group_name</fieldname>
   <fieldname>group_order</fieldname>
   <fieldname>description</fieldname>
   <fieldname>language</fieldname>
   <fieldname>randomization_group</fieldname>
   <fieldname>grelevance</fieldname>
  </fields>
  <rows>
   <row>
    <gid><![CDATA[6800]]></gid>
    <sid><![CDATA[363248]]></sid>
    <group_name><![CDATA[B -delaram]]></group_name>
    <group_order><![CDATA[1]]></group_order>
    <description/>
    <language><![CDATA[fa]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
   <row>
    <gid><![CDATA[6800]]></gid>
    <sid><![CDATA[363248]]></sid>
    <group_name><![CDATA[B -delaram]]></group_name>
    <group_order><![CDATA[1]]></group_order>
    <description/>
    <language><![CDATA[en]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
  </rows>
 </groups>
 <questions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[54982]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[Q81]]></title>
    <question><![CDATA[<strong style="text-align: -webkit-center;">1-8. </strong><script type="text/javascript" charset="utf-8">		
    $(document).ready(function(){
  $('#question{QID} tr.subquestions-list:eq(0) td.question-item:eq(1) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(0) *').remove();


    });
</script>
<script type="text/javascript" charset="utf-8">		
	$(document).ready(function() {	
		
		// Identify the questions
		var thisQuestion = $('#question{QID}');
		var nextQuestion = $(thisQuestion).nextAll('.array-multi-flexi:eq(0)');
		var nextQuestion2 = $(thisQuestion).nextAll('.array-multi-flexi:eq(1)');
		var nextQuestion3 = $(thisQuestion).nextAll('.array-multi-flexi:eq(2)');
		var theseQuestions = $(thisQuestion).add(nextQuestion).add(nextQuestion2).add(nextQuestion3);
		
		// Assign row-specific classes
		$('table.subquestions-list tbody', theseQuestions).each(function(i){
			$('> *', this).each(function(i){
				$(this).addClass('row-'+(i+1)+'');
				$(this).attr('data-row', (i+1));
			});
		});			
		// Assign column-specific classes
		$('table.subquestions-list tr', theseQuestions).each(function(i){
			$('> *', this).each(function(i){
				$(this).addClass('column-'+i+'');
				$(this).attr('data-column', i);
			});
		});	
		
		// Initial Q2 input states
		$('input[type="text"]', nextQuestion).prop('readonly', false).css('opacity', '1');
		$('input[type="text"]', nextQuestion2).prop('readonly', false).css('opacity', '1');
		$('input[type="text"]', nextQuestion3).prop('readonly', false).css('opacity', '1');
		// Loop through all un-checked boxes in Q1
		$('input[type="checkbox"]:not(:checked)', thisQuestion).each(function(i) {
			// Disable the corresponding input in Q2
			var rowNum = $(this).closest('tr').attr('data-row');
			var columnNum = $(this).closest('td').attr('data-column');
			$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion).val('').prop('readonly', true).css('opacity', '0.3');
			$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion2).val('').prop('readonly', true).css('opacity', '0.3');
			$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion3).val('').prop('readonly', true).css('opacity', '0.3');
		});
		
		// Listener on the Q1 checkboxes
		$('input[type="checkbox"]', thisQuestion).on('change', function(e) {
			// Reset Q2, Q3, Q4
			$('input[type="text"]', nextQuestion).prop('readonly', false).css('opacity', '1');
			$('input[type="text"]', nextQuestion2).prop('readonly', false).css('opacity', '1');
			$('input[type="text"]', nextQuestion3).prop('readonly', false).css('opacity', '1');
			// Loop through all un-checked boxes in Q1
			$('input[type="checkbox"]:not(:checked)', thisQuestion).each(function(i) {
				// Disable the corresponding input in Q2
				var rowNum = $(this).closest('tr').attr('data-row');
				var columnNum = $(this).closest('td').attr('data-column');
				$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion).val('').prop('readonly', true).css('opacity', '0.3');
				$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion2).val('').prop('readonly', true).css('opacity', '0.3');
				$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion3).val('').prop('readonly', true).css('opacity', '0.3');
			});
		});
    });
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[54982]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[Q81]]></title>
    <question><![CDATA[<strong style="text-align: -webkit-center;">1-8. </strong><script type="text/javascript" charset="utf-8">		
    $(document).ready(function(){
  $('#question{QID} tr.subquestions-list:eq(0) td.question-item:eq(1) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(0) *').remove();


    });
</script>
<script type="text/javascript" charset="utf-8">		
	$(document).ready(function() {	
		
		// Identify the questions
		var thisQuestion = $('#question{QID}');
		var nextQuestion = $(thisQuestion).nextAll('.array-multi-flexi:eq(0)');
		var nextQuestion2 = $(thisQuestion).nextAll('.array-multi-flexi:eq(1)');
		var nextQuestion3 = $(thisQuestion).nextAll('.array-multi-flexi:eq(2)');
		var theseQuestions = $(thisQuestion).add(nextQuestion).add(nextQuestion2).add(nextQuestion3);
		
		// Assign row-specific classes
		$('table.subquestions-list tbody', theseQuestions).each(function(i){
			$('> *', this).each(function(i){
				$(this).addClass('row-'+(i+1)+'');
				$(this).attr('data-row', (i+1));
			});
		});			
		// Assign column-specific classes
		$('table.subquestions-list tr', theseQuestions).each(function(i){
			$('> *', this).each(function(i){
				$(this).addClass('column-'+i+'');
				$(this).attr('data-column', i);
			});
		});	
		
		// Initial Q2 input states
		$('input[type="text"]', nextQuestion).prop('readonly', false).css('opacity', '1');
		$('input[type="text"]', nextQuestion2).prop('readonly', false).css('opacity', '1');
		$('input[type="text"]', nextQuestion3).prop('readonly', false).css('opacity', '1');
		// Loop through all un-checked boxes in Q1
		$('input[type="checkbox"]:not(:checked)', thisQuestion).each(function(i) {
			// Disable the corresponding input in Q2
			var rowNum = $(this).closest('tr').attr('data-row');
			var columnNum = $(this).closest('td').attr('data-column');
			$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion).val('').prop('readonly', true).css('opacity', '0.3');
			$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion2).val('').prop('readonly', true).css('opacity', '0.3');
			$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion3).val('').prop('readonly', true).css('opacity', '0.3');
		});
		
		// Listener on the Q1 checkboxes
		$('input[type="checkbox"]', thisQuestion).on('change', function(e) {
			// Reset Q2, Q3, Q4
			$('input[type="text"]', nextQuestion).prop('readonly', false).css('opacity', '1');
			$('input[type="text"]', nextQuestion2).prop('readonly', false).css('opacity', '1');
			$('input[type="text"]', nextQuestion3).prop('readonly', false).css('opacity', '1');
			// Loop through all un-checked boxes in Q1
			$('input[type="checkbox"]:not(:checked)', thisQuestion).each(function(i) {
				// Disable the corresponding input in Q2
				var rowNum = $(this).closest('tr').attr('data-row');
				var columnNum = $(this).closest('td').attr('data-column');
				$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion).val('').prop('readonly', true).css('opacity', '0.3');
				$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion2).val('').prop('readonly', true).css('opacity', '0.3');
				$('tr[data-row="'+rowNum+'"] td[data-column="'+columnNum+'"] input[type="text"]', nextQuestion3).val('').prop('readonly', true).css('opacity', '0.3');
			});
		});
    });
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[54983]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[Q82]]></title>
    <question><![CDATA[<strong style="text-align: -webkit-center;">2-8. count </strong><script type="text/javascript" charset="utf-8">		
    $(document).ready(function(){
  $('#question{QID} tr.subquestions-list:eq(0) td.question-item:eq(1) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(0) *').remove();


    });
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[54983]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[Q82]]></title>
    <question><![CDATA[<strong style="text-align: -webkit-center;">2-8. count </strong><script type="text/javascript" charset="utf-8">		
    $(document).ready(function(){
  $('#question{QID} tr.subquestions-list:eq(0) td.question-item:eq(1) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(0) *').remove();


    });
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[55004]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[Q83]]></title>
    <question><![CDATA[<strong style="text-align: -webkit-center;">2-8. count </strong><script type="text/javascript" charset="utf-8">		
    $(document).ready(function(){
  $('#question{QID} tr.subquestions-list:eq(0) td.question-item:eq(1) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(0) *').remove();


    });
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[55004]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[Q83]]></title>
    <question><![CDATA[<strong style="text-align: -webkit-center;">2-8. count </strong><script type="text/javascript" charset="utf-8">		
    $(document).ready(function(){
  $('#question{QID} tr.subquestions-list:eq(0) td.question-item:eq(1) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(0) *').remove();


    });
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[55015]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[Q84]]></title>
    <question><![CDATA[<strong style="text-align: -webkit-center;">2-8. count </strong><script type="text/javascript" charset="utf-8">		
    $(document).ready(function(){
  $('#question{QID} tr.subquestions-list:eq(0) td.question-item:eq(1) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(0) *').remove();


    });
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[55015]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[Q84]]></title>
    <question><![CDATA[<strong style="text-align: -webkit-center;">2-8. count </strong><script type="text/javascript" charset="utf-8">		
    $(document).ready(function(){
  $('#question{QID} tr.subquestions-list:eq(0) td.question-item:eq(1) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(1) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(2) td.question-item:eq(0) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(2) *').remove();
  $('#question{QID} tr.subquestions-list:eq(4) td.question-item:eq(0) *').remove();


    });
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
  </rows>
 </questions>
 <subquestions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[54984]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[state 1 ]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54984]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[state 1 ]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54985]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[state 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54985]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[state 1]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54986]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[brand A]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54986]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[brand A]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54987]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[brand A]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54987]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[brand A]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54988]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[state 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54988]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[state 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54989]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[state 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54989]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[state 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54990]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[brand B]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54990]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[brand B]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54991]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[brand B]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54991]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[brand B]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54992]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[state 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54992]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[state 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54993]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[state 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54993]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[state 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54994]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[brand C]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54994]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[brand C]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54995]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[brand C]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54995]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[brand C]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54996]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[state 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54996]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[state 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54997]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[state 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54997]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[state 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54998]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[state 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54998]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[state 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54999]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[state 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[54999]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[state 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55000]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[state 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55000]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[state 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55001]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[state 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55001]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[state 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55002]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[state 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55002]]></qid>
    <parent_qid><![CDATA[54983]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[state 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55003]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[state 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55003]]></qid>
    <parent_qid><![CDATA[54982]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[:]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[state 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55005]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[state 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55005]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[state 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55006]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[state 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55006]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[state 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55007]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[state 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55007]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[state 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55008]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[state 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55008]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[state 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55009]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[brand C]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55009]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[brand C]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55010]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[state 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55010]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[state 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55011]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[brand B]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55011]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[brand B]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55012]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[state 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55012]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[state 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55013]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[state 1 ]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55013]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[state 1 ]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55014]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[brand A]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55014]]></qid>
    <parent_qid><![CDATA[55004]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[brand A]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55016]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[state 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55016]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[7]]></title>
    <question><![CDATA[state 7]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55017]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[state 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55017]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[5]]></title>
    <question><![CDATA[state 5]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55018]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[state 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55018]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[6]]></title>
    <question><![CDATA[state 6]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55019]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[state 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55019]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[state 2]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55020]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[state 1 ]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55020]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[state 1 ]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55021]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[brand A]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55021]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[1]]></title>
    <question><![CDATA[brand A]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55022]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[state 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55022]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[4]]></title>
    <question><![CDATA[state 4]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55023]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[brand C]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55023]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[brand C]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55024]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[state 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55024]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[3]]></title>
    <question><![CDATA[state 3]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55025]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[brand B]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
   <row>
    <qid><![CDATA[55025]]></qid>
    <parent_qid><![CDATA[55015]]></parent_qid>
    <sid><![CDATA[363248]]></sid>
    <gid><![CDATA[6800]]></gid>
    <type><![CDATA[T]]></type>
    <title><![CDATA[2]]></title>
    <question><![CDATA[brand B]]></question>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[fa]]></language>
    <scale_id><![CDATA[1]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance/>
   </row>
  </rows>
 </subquestions>
 <question_attributes>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>attribute</fieldname>
   <fieldname>value</fieldname>
   <fieldname>language</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[54982]]></qid>
    <attribute><![CDATA[multiflexible_checkbox]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[54983]]></qid>
    <attribute><![CDATA[input_boxes]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[55004]]></qid>
    <attribute><![CDATA[input_boxes]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qid><![CDATA[55015]]></qid>
    <attribute><![CDATA[input_boxes]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
  </rows>
 </question_attributes>
 <surveys>
  <fields>
   <fieldname>sid</fieldname>
   <fieldname>admin</fieldname>
   <fieldname>expires</fieldname>
   <fieldname>startdate</fieldname>
   <fieldname>adminemail</fieldname>
   <fieldname>anonymized</fieldname>
   <fieldname>faxto</fieldname>
   <fieldname>format</fieldname>
   <fieldname>savetimings</fieldname>
   <fieldname>template</fieldname>
   <fieldname>language</fieldname>
   <fieldname>additional_languages</fieldname>
   <fieldname>datestamp</fieldname>
   <fieldname>usecookie</fieldname>
   <fieldname>allowregister</fieldname>
   <fieldname>allowsave</fieldname>
   <fieldname>autonumber_start</fieldname>
   <fieldname>autoredirect</fieldname>
   <fieldname>allowprev</fieldname>
   <fieldname>printanswers</fieldname>
   <fieldname>ipaddr</fieldname>
   <fieldname>refurl</fieldname>
   <fieldname>publicstatistics</fieldname>
   <fieldname>publicgraphs</fieldname>
   <fieldname>listpublic</fieldname>
   <fieldname>htmlemail</fieldname>
   <fieldname>sendconfirmation</fieldname>
   <fieldname>tokenanswerspersistence</fieldname>
   <fieldname>assessments</fieldname>
   <fieldname>usecaptcha</fieldname>
   <fieldname>usetokens</fieldname>
   <fieldname>bounce_email</fieldname>
   <fieldname>attributedescriptions</fieldname>
   <fieldname>emailresponseto</fieldname>
   <fieldname>emailnotificationto</fieldname>
   <fieldname>tokenlength</fieldname>
   <fieldname>showxquestions</fieldname>
   <fieldname>showgroupinfo</fieldname>
   <fieldname>shownoanswer</fieldname>
   <fieldname>showqnumcode</fieldname>
   <fieldname>bouncetime</fieldname>
   <fieldname>bounceprocessing</fieldname>
   <fieldname>bounceaccounttype</fieldname>
   <fieldname>bounceaccounthost</fieldname>
   <fieldname>bounceaccountpass</fieldname>
   <fieldname>bounceaccountencryption</fieldname>
   <fieldname>bounceaccountuser</fieldname>
   <fieldname>showwelcome</fieldname>
   <fieldname>showprogress</fieldname>
   <fieldname>navigationdelay</fieldname>
   <fieldname>nokeyboard</fieldname>
   <fieldname>alloweditaftercompletion</fieldname>
   <fieldname>googleanalyticsstyle</fieldname>
   <fieldname>googleanalyticsapikey</fieldname>
   <fieldname>questionindex</fieldname>
  </fields>
  <rows>
   <row>
    <sid><![CDATA[363248]]></sid>
    <admin><![CDATA[Administrator]]></admin>
    <adminemail><![CDATA[mahdavi@RAHBARBAZAAR.COM]]></adminemail>
    <anonymized><![CDATA[N]]></anonymized>
    <faxto/>
    <format><![CDATA[G]]></format>
    <savetimings><![CDATA[N]]></savetimings>
    <template><![CDATA[basic]]></template>
    <language><![CDATA[fa]]></language>
    <additional_languages><![CDATA[en ]]></additional_languages>
    <datestamp><![CDATA[N]]></datestamp>
    <usecookie><![CDATA[N]]></usecookie>
    <allowregister><![CDATA[N]]></allowregister>
    <allowsave><![CDATA[Y]]></allowsave>
    <autonumber_start><![CDATA[0]]></autonumber_start>
    <autoredirect><![CDATA[N]]></autoredirect>
    <allowprev><![CDATA[N]]></allowprev>
    <printanswers><![CDATA[N]]></printanswers>
    <ipaddr><![CDATA[N]]></ipaddr>
    <refurl><![CDATA[N]]></refurl>
    <publicstatistics><![CDATA[N]]></publicstatistics>
    <publicgraphs><![CDATA[N]]></publicgraphs>
    <listpublic><![CDATA[N]]></listpublic>
    <htmlemail><![CDATA[N]]></htmlemail>
    <sendconfirmation><![CDATA[Y]]></sendconfirmation>
    <tokenanswerspersistence><![CDATA[N]]></tokenanswerspersistence>
    <assessments><![CDATA[N]]></assessments>
    <usecaptcha><![CDATA[N]]></usecaptcha>
    <usetokens><![CDATA[N]]></usetokens>
    <bounce_email><![CDATA[mahdavi@RAHBARBAZAAR.COM]]></bounce_email>
    <emailresponseto/>
    <emailnotificationto/>
    <tokenlength><![CDATA[15]]></tokenlength>
    <showxquestions><![CDATA[Y]]></showxquestions>
    <showgroupinfo><![CDATA[B]]></showgroupinfo>
    <shownoanswer><![CDATA[N]]></shownoanswer>
    <showqnumcode><![CDATA[X]]></showqnumcode>
    <bounceprocessing><![CDATA[N]]></bounceprocessing>
    <showwelcome><![CDATA[N]]></showwelcome>
    <showprogress><![CDATA[Y]]></showprogress>
    <navigationdelay><![CDATA[0]]></navigationdelay>
    <nokeyboard><![CDATA[N]]></nokeyboard>
    <alloweditaftercompletion><![CDATA[N]]></alloweditaftercompletion>
    <googleanalyticsstyle><![CDATA[0]]></googleanalyticsstyle>
    <googleanalyticsapikey/>
    <questionindex><![CDATA[0]]></questionindex>
   </row>
  </rows>
 </surveys>
 <surveys_languagesettings>
  <fields>
   <fieldname>surveyls_survey_id</fieldname>
   <fieldname>surveyls_language</fieldname>
   <fieldname>surveyls_title</fieldname>
   <fieldname>surveyls_description</fieldname>
   <fieldname>surveyls_welcometext</fieldname>
   <fieldname>surveyls_endtext</fieldname>
   <fieldname>surveyls_url</fieldname>
   <fieldname>surveyls_urldescription</fieldname>
   <fieldname>surveyls_email_invite_subj</fieldname>
   <fieldname>surveyls_email_invite</fieldname>
   <fieldname>surveyls_email_remind_subj</fieldname>
   <fieldname>surveyls_email_remind</fieldname>
   <fieldname>surveyls_email_register_subj</fieldname>
   <fieldname>surveyls_email_register</fieldname>
   <fieldname>surveyls_email_confirm_subj</fieldname>
   <fieldname>surveyls_email_confirm</fieldname>
   <fieldname>surveyls_dateformat</fieldname>
   <fieldname>surveyls_attributecaptions</fieldname>
   <fieldname>email_admin_notification_subj</fieldname>
   <fieldname>email_admin_notification</fieldname>
   <fieldname>email_admin_responses_subj</fieldname>
   <fieldname>email_admin_responses</fieldname>
   <fieldname>surveyls_numberformat</fieldname>
   <fieldname>attachments</fieldname>
  </fields>
  <rows>
   <row>
    <surveyls_survey_id><![CDATA[363248]]></surveyls_survey_id>
    <surveyls_language><![CDATA[en]]></surveyls_language>
    <surveyls_title/>
    <surveyls_url/>
    <surveyls_email_invite_subj><![CDATA[Invitation to participate in a survey]]></surveyls_email_invite_subj>
    <surveyls_email_invite><![CDATA[Dear {FIRSTNAME},

you have been invited to participate in a survey.

The survey is titled:
"{SURVEYNAME}"

"{SURVEYDESCRIPTION}"

To participate, please click on the link below.

Sincerely,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Click here to do the survey:
{SURVEYURL}

If you do not want to participate in this survey and don't want to receive any more invitations please click the following link:
{OPTOUTURL}

If you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
{OPTINURL}]]></surveyls_email_invite>
    <surveyls_email_remind_subj><![CDATA[Reminder to participate in a survey]]></surveyls_email_remind_subj>
    <surveyls_email_remind><![CDATA[Dear {FIRSTNAME},

Recently we invited you to participate in a survey.

We note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.

The survey is titled:
"{SURVEYNAME}"

"{SURVEYDESCRIPTION}"

To participate, please click on the link below.

Sincerely,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Click here to do the survey:
{SURVEYURL}

If you do not want to participate in this survey and don't want to receive any more invitations please click the following link:
{OPTOUTURL}]]></surveyls_email_remind>
    <surveyls_email_register_subj><![CDATA[Survey registration confirmation]]></surveyls_email_register_subj>
    <surveyls_email_register><![CDATA[Dear {FIRSTNAME},

You, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.

To complete this survey, click on the following URL:

{SURVEYURL}

If you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.]]></surveyls_email_register>
    <surveyls_email_confirm_subj><![CDATA[Confirmation of your participation in our survey]]></surveyls_email_confirm_subj>
    <surveyls_email_confirm><![CDATA[Dear {FIRSTNAME},

this email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.

If you have any further questions about this email, please contact {ADMINNAME} on {ADMINEMAIL}.

Sincerely,

{ADMINNAME}]]></surveyls_email_confirm>
    <surveyls_dateformat><![CDATA[9]]></surveyls_dateformat>
    <email_admin_notification_subj><![CDATA[Response submission for survey {SURVEYNAME}]]></email_admin_notification_subj>
    <email_admin_notification><![CDATA[Hello,

A new response was submitted for your survey '{SURVEYNAME}'.

Click the following link to reload the survey:
{RELOADURL}

Click the following link to see the individual response:
{VIEWRESPONSEURL}

Click the following link to edit the individual response:
{EDITRESPONSEURL}

View statistics by clicking here:
{STATISTICSURL}]]></email_admin_notification>
    <email_admin_responses_subj><![CDATA[Response submission for survey {SURVEYNAME} with results]]></email_admin_responses_subj>
    <email_admin_responses><![CDATA[Hello,

A new response was submitted for your survey '{SURVEYNAME}'.

Click the following link to reload the survey:
{RELOADURL}

Click the following link to see the individual response:
{VIEWRESPONSEURL}

Click the following link to edit the individual response:
{EDITRESPONSEURL}

View statistics by clicking here:
{STATISTICSURL}


The following answers were given by the participant:
{ANSWERTABLE}]]></email_admin_responses>
    <surveyls_numberformat><![CDATA[0]]></surveyls_numberformat>
   </row>
   <row>
    <surveyls_survey_id><![CDATA[363248]]></surveyls_survey_id>
    <surveyls_language><![CDATA[fa]]></surveyls_language>
    <surveyls_title><![CDATA[disable cell]]></surveyls_title>
    <surveyls_description/>
    <surveyls_welcometext/>
    <surveyls_endtext/>
    <surveyls_url/>
    <surveyls_urldescription/>
    <surveyls_email_invite_subj><![CDATA[دعوت به شرکت در یک نظر سنجی]]></surveyls_email_invite_subj>
    <surveyls_email_invite><![CDATA[Dear {FIRSTNAME},

you have been invited to participate in a survey.

The survey is titled:
"{SURVEYNAME}"

"{SURVEYDESCRIPTION}"

To participate, please click on the link below.

Sincerely,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Click here to do the survey:
{SURVEYURL}

If you do not want to participate in this survey and don't want to receive any more invitations please click the following link:
{OPTOUTURL}

If you are blacklisted but want to participate in this survey and want to receive invitations please click the following link:
{OPTINURL}]]></surveyls_email_invite>
    <surveyls_email_remind_subj><![CDATA[یادآوری برای شرکت در نظرسنجی]]></surveyls_email_remind_subj>
    <surveyls_email_remind><![CDATA[حضور محترم {FIRSTNAME},

اخیراً از شما برای شرکت در نظرسنجی دعوت شده بود.

و همانطور که به نظر می‌رسد شما هنوز نظرسنجی مذکور را تکمیل نکرده‌اید و یادآور می‌شود که نظرسنجی مذکور هنوز فعال است و شما می‌توانید در آن شرکت کنید.

عنوان این نظرسنجی عبارت است از:
"{SURVEYNAME}"

"{SURVEYDESCRIPTION}"

برای شرکت در این نظرسنجی بر روی لینک زیر کلیک کنید.

با تشکر,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
برای انجام نظرسنجی اینجا را کلیک کنید:
{SURVEYURL}

If you do not want to participate in this survey and don't want to receive any more invitations please click the following link:
{OPTOUTURL}]]></surveyls_email_remind>
    <surveyls_email_register_subj><![CDATA[تاییديه ثبت‌نام در نطرسنجی]]></surveyls_email_register_subj>
    <surveyls_email_register><![CDATA[حضور محترم {FIRSTNAME},

شما (و یا شخصی که از آدرس ایمیل شما استفاده می‌کند) برای شرکت در نظرسنجی با عنوان {SURVEYNAME} ثبت‌نام کرده است.

برای تکمیل این نظرسنجی بر روی آدرس اینترنتی زیر کلیک کنید:

{SURVEYURL}

اگر هرگونه پرسشی در ارتباط با این نظرسنجی داشتید و یا آنکه شما برای شرکت در این نظرسنجی ثبت‌نام نکرده‌اید و معتقید که این ایمیل اشتباهاً برای شما ارسال شده است با {ADMINNAME} در آدرس {ADMINEMAIL} تماس بگیرید.]]></surveyls_email_register>
    <surveyls_email_confirm_subj><![CDATA[تأییدیه از شرکت شما در نظر سنجی ما]]></surveyls_email_confirm_subj>
    <surveyls_email_confirm><![CDATA[حضور محترم {FIRSTNAME},

این ایمیل برای تایید تکمیل نظرسنجی {SURVEYNAME} و ذخیره شدن نظر شما است. از شرکت شما در این نظرسنجی متشکریم.

اگر شما هرگونه پرسشی در ارتباط با این ایمیل داشتید می‌توانید با {ADMINNAME} در آدرس {ADMINEMAIL} تماس بگیرید.

با تشکر,

{ADMINNAME}]]></surveyls_email_confirm>
    <surveyls_dateformat><![CDATA[9]]></surveyls_dateformat>
    <email_admin_notification_subj><![CDATA[ارسال پاسخ برای نظرسنجی {SURVEYNAME}]]></email_admin_notification_subj>
    <email_admin_notification><![CDATA[سلام،

پاسخ جديدی برای نظرسنجی '{SURVEYNAME}' ارسال شد.

برای بازخوانی نظرسنجی روی لينک زير کليک کنيد:
{RELOADURL}

برای مشاهده پاسخ رو لينک زير کليک کنيد:
{VIEWRESPONSEURL}

برای ويرايش پاسخ روی لينک زير کليک کنيد:
{EDITRESPONSEURL}

مشاهده آمار:
{STATISTICSURL}]]></email_admin_notification>
    <email_admin_responses_subj><![CDATA[Response submission for survey {SURVEYNAME} with results]]></email_admin_responses_subj>
    <email_admin_responses><![CDATA[سلام،

پاسخ جديدی برای نظرسنجی '{SURVEYNAME}' ارسال شد.
برای بازخوانی نظرسنجی روی لينک زير کليک کنيد:
{RELOADURL}
برای مشاهده پاسخ رو لينک زير کليک کنيد:
{VIEWRESPONSEURL}
برای ويرايش پاسخ روی لينک زير کليک کنيد:
{EDITRESPONSEURL}

مشاهده آمار:
{STATISTICSURL}


جوابهای زير توسط شرکت کننده داده شده اند:
{ANSWERTABLE}]]></email_admin_responses>
    <surveyls_numberformat><![CDATA[0]]></surveyls_numberformat>
   </row>
  </rows>
 </surveys_languagesettings>
</document>
