프로젝트

일반

사용자정보

개정판 16a37794

ID16a37794bfa1ee5278c156759c93fc627ef2af7d
상위 fccdbb9c
하위 00b01eeb

김연진이(가) 약 5년 전에 추가함

issue #1049 : 옵션 창 및 기능

Change-Id: I31afb963dd2a4349e61bfaca6c0c0bb237006654

차이점 보기:

HYTOS/HYTOS/ConfigurationDialog.py
22 22
        self.ui.comboBox_Pressure.currentIndexChanged.connect(self.onPressureChanged) 
23 23
        self.ui.comboBox_Decimal.currentIndexChanged.connect(self.onDecimalChanged) 
24 24

  
25
        self.ui.radioButton_BD.clicked.connect(self.select_equation)
26
        self.ui.radioButton_Lummus.clicked.connect(self.select_equation)
27
        self.ui.radioButton_Mixed.clicked.connect(self.select_equation)
28
        self.ui.radioButton_Aramco.clicked.connect(self.select_equation)
29
        self.ui.radioButton_User.clicked.connect(self.select_equation)
30

  
25 31
        self.initialize()
26
    
32

  
33
    def select_equation(self):
34
        if self.sender() == self.ui.radioButton_BD:
35
            self.ui.groupBox_DB.setVisible(True)
36
            self.ui.groupBox_Lummus.setVisible(False)
37
            self.ui.groupBox_Mixed.setVisible(False)
38
            self.ui.groupBox_Aramco.setVisible(False)
39
        elif self.sender() == self.ui.radioButton_Lummus:
40
            self.ui.groupBox_DB.setVisible(False)
41
            self.ui.groupBox_Lummus.setVisible(True)
42
            self.ui.groupBox_Mixed.setVisible(False)
43
            self.ui.groupBox_Aramco.setVisible(False)
44
        elif self.sender() == self.ui.radioButton_Mixed:
45
            self.ui.groupBox_DB.setVisible(False)
46
            self.ui.groupBox_Lummus.setVisible(False)
47
            self.ui.groupBox_Mixed.setVisible(True)
48
            self.ui.groupBox_Aramco.setVisible(False)
49
        elif self.sender() == self.ui.radioButton_Aramco:
50
            self.ui.groupBox_DB.setVisible(False)
51
            self.ui.groupBox_Lummus.setVisible(False)
52
            self.ui.groupBox_Mixed.setVisible(False)
53
            self.ui.groupBox_Aramco.setVisible(True)
54
        elif self.sender() == self.ui.radioButton_User:
55
            pass
56

  
27 57
    def showDialog(self):
28 58
        self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint)
29 59

  
......
72 102
            self.ui.lineEdit_CurrentBarometricPressure.setText('0.101325')
73 103

  
74 104
        self.ui.label_PressureUnit.setText(unit)
75
    
76 105

  
77
    def initialize(self):      
106
    def initialize(self):
78 107
        try:             
79 108
            self.ui.comboBox_Flowrate_Mass.clear()
80 109
            self.ui.comboBox_Flowrate_Volume.clear()
......
140 169
            appDocData = AppDocData.instance()
141 170
            drawing = appDocData.activeDrawing    
142 171
            if drawing:
172
                # Control Valve
173
                equation = appDocData.getConfigs('Control Valve', 'Equation')
174
                if len(equation) == 1:
175
                    if equation[0].value == 'bd':
176
                        self.ui.radioButton_BD.setChecked(True)
177
                        self.ui.groupBox_DB.setVisible(True)
178
                        self.ui.groupBox_Lummus.setVisible(False)
179
                        self.ui.groupBox_Mixed.setVisible(False)
180
                        self.ui.groupBox_Aramco.setVisible(False)
181
                    elif equation[0].value == 'lummus':
182
                        self.ui.radioButton_Lummus.setChecked(True)
183
                        self.ui.groupBox_DB.setVisible(False)
184
                        self.ui.groupBox_Lummus.setVisible(True)
185
                        self.ui.groupBox_Mixed.setVisible(False)
186
                        self.ui.groupBox_Aramco.setVisible(False)
187
                    elif equation[0].value == 'mixed':
188
                        self.ui.radioButton_Mixed.setChecked(True)
189
                        self.ui.groupBox_DB.setVisible(False)
190
                        self.ui.groupBox_Lummus.setVisible(False)
191
                        self.ui.groupBox_Mixed.setVisible(True)
192
                        self.ui.groupBox_Aramco.setVisible(False)
193
                    elif equation[0].value == 'aramco':
194
                        self.ui.radioButton_Aramco.setChecked(True)
195
                        self.ui.radioButton_Mixed.setChecked(True)
196
                        self.ui.groupBox_DB.setVisible(False)
197
                        self.ui.groupBox_Lummus.setVisible(False)
198
                        self.ui.groupBox_Mixed.setVisible(False)
199
                        self.ui.groupBox_Aramco.setVisible(True)
200
                    elif equation[0].value == 'user':
201
                        self.ui.radioButton_User.setChecked(True)
202

  
143 203
                # Calculation
144 204
                liquid_dp_method = appDocData.getConfigs('Calculation', 'Liquid_Drop_Method')
145 205

  
......
148 208
                        self.ui.radioButton_Darcy.setChecked(True)                
149 209
                    else:
150 210
                        self.ui.radioButton_Hagen.setChecked(True)
151
                    
152 211

  
153 212
                # Units    
154 213
                for attr in drawing.attrs:
......
235 294
        else:
236 295
            configs.append(Config('Calculation', 'Liquid_Drop_Method', 'hagen'))
237 296

  
238

  
239

  
297
        # Control Valve
298
        if self.ui.radioButton_BD.isChecked():
299
            configs.append(Config('Control Valve', 'Equation', 'bd'))
300
        elif self.ui.radioButton_Lummus.isChecked():
301
            configs.append(Config('Control Valve', 'Equation', 'lummus'))
302
        elif self.ui.radioButton_Mixed.isChecked():
303
            configs.append(Config('Control Valve', 'Equation', 'mixed'))
304
        elif self.ui.radioButton_Aramco.isChecked():
305
            configs.append(Config('Control Valve', 'Equation', 'aramco'))
240 306

  
241 307
        app_Doc_Data.saveConfigs(configs)
242 308

  
HYTOS/HYTOS/Configuration_UI.py
13 13
class Ui_ConfigurationDialog(object):
14 14
    def setupUi(self, ConfigurationDialog):
15 15
        ConfigurationDialog.setObjectName("ConfigurationDialog")
16
        ConfigurationDialog.resize(546, 486)
16
        ConfigurationDialog.resize(558, 529)
17 17
        font = QtGui.QFont()
18 18
        font.setFamily("맑은 고딕")
19 19
        ConfigurationDialog.setFont(font)
20 20
        icon = QtGui.QIcon()
21 21
        icon.addPixmap(QtGui.QPixmap(":/images/HYTOS.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
22 22
        ConfigurationDialog.setWindowIcon(icon)
23
        self.formLayout = QtWidgets.QFormLayout(ConfigurationDialog)
24
        self.formLayout.setObjectName("formLayout")
23
        self.gridLayout_15 = QtWidgets.QGridLayout(ConfigurationDialog)
24
        self.gridLayout_15.setObjectName("gridLayout_15")
25
        self.buttonBox = QtWidgets.QDialogButtonBox(ConfigurationDialog)
26
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
27
        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
28
        self.buttonBox.setObjectName("buttonBox")
29
        self.gridLayout_15.addWidget(self.buttonBox, 2, 0, 1, 1)
25 30
        self.tabWidget = QtWidgets.QTabWidget(ConfigurationDialog)
26 31
        self.tabWidget.setObjectName("tabWidget")
27 32
        self.Infomation = QtWidgets.QWidget()
......
596 601
        self.gridLayout_13.addLayout(self.verticalLayout_3, 0, 0, 1, 1)
597 602
        self.gridLayout.addWidget(self.groupBox_5, 1, 0, 1, 1)
598 603
        self.tabWidget.addTab(self.Unit, "")
604
        self.tab_2 = QtWidgets.QWidget()
605
        self.tab_2.setObjectName("tab_2")
606
        self.groupBox_DB = QtWidgets.QGroupBox(self.tab_2)
607
        self.groupBox_DB.setGeometry(QtCore.QRect(244, 9, 277, 437))
608
        font = QtGui.QFont()
609
        font.setBold(True)
610
        font.setWeight(75)
611
        self.groupBox_DB.setFont(font)
612
        self.groupBox_DB.setObjectName("groupBox_DB")
613
        self.label_26 = QtWidgets.QLabel(self.groupBox_DB)
614
        self.label_26.setGeometry(QtCore.QRect(12, 24, 85, 16))
615
        font = QtGui.QFont()
616
        font.setBold(False)
617
        font.setItalic(False)
618
        font.setUnderline(True)
619
        font.setWeight(50)
620
        font.setStrikeOut(False)
621
        self.label_26.setFont(font)
622
        self.label_26.setObjectName("label_26")
623
        self.label_24 = QtWidgets.QLabel(self.groupBox_DB)
624
        self.label_24.setGeometry(QtCore.QRect(8, 40, 261, 81))
625
        font = QtGui.QFont()
626
        font.setBold(False)
627
        font.setWeight(50)
628
        self.label_24.setFont(font)
629
        self.label_24.setObjectName("label_24")
630
        self.label_25 = QtWidgets.QLabel(self.groupBox_DB)
631
        self.label_25.setGeometry(QtCore.QRect(12, 124, 73, 16))
632
        font = QtGui.QFont()
633
        font.setBold(False)
634
        font.setUnderline(True)
635
        font.setWeight(50)
636
        self.label_25.setFont(font)
637
        self.label_25.setObjectName("label_25")
638
        self.label_27 = QtWidgets.QLabel(self.groupBox_DB)
639
        self.label_27.setGeometry(QtCore.QRect(8, 140, 149, 49))
640
        self.label_27.setObjectName("label_27")
641
        self.label_28 = QtWidgets.QLabel(self.groupBox_DB)
642
        self.label_28.setGeometry(QtCore.QRect(12, 196, 121, 16))
643
        font = QtGui.QFont()
644
        font.setBold(False)
645
        font.setUnderline(True)
646
        font.setWeight(50)
647
        self.label_28.setFont(font)
648
        self.label_28.setObjectName("label_28")
649
        self.label_29 = QtWidgets.QLabel(self.groupBox_DB)
650
        self.label_29.setGeometry(QtCore.QRect(20, 224, 121, 16))
651
        font = QtGui.QFont()
652
        font.setBold(False)
653
        font.setUnderline(False)
654
        font.setWeight(50)
655
        self.label_29.setFont(font)
656
        self.label_29.setObjectName("label_29")
657
        self.label_30 = QtWidgets.QLabel(self.groupBox_DB)
658
        self.label_30.setGeometry(QtCore.QRect(20, 244, 121, 16))
659
        font = QtGui.QFont()
660
        font.setBold(False)
661
        font.setUnderline(False)
662
        font.setWeight(50)
663
        self.label_30.setFont(font)
664
        self.label_30.setObjectName("label_30")
665
        self.label_31 = QtWidgets.QLabel(self.groupBox_DB)
666
        self.label_31.setGeometry(QtCore.QRect(20, 264, 121, 16))
667
        font = QtGui.QFont()
668
        font.setBold(False)
669
        font.setUnderline(False)
670
        font.setWeight(50)
671
        self.label_31.setFont(font)
672
        self.label_31.setObjectName("label_31")
673
        self.label_32 = QtWidgets.QLabel(self.groupBox_DB)
674
        self.label_32.setGeometry(QtCore.QRect(20, 284, 121, 16))
675
        font = QtGui.QFont()
676
        font.setBold(False)
677
        font.setUnderline(False)
678
        font.setWeight(50)
679
        self.label_32.setFont(font)
680
        self.label_32.setObjectName("label_32")
681
        self.label_33 = QtWidgets.QLabel(self.groupBox_DB)
682
        self.label_33.setGeometry(QtCore.QRect(20, 304, 121, 16))
683
        font = QtGui.QFont()
684
        font.setBold(False)
685
        font.setUnderline(False)
686
        font.setWeight(50)
687
        self.label_33.setFont(font)
688
        self.label_33.setObjectName("label_33")
689
        self.label_34 = QtWidgets.QLabel(self.groupBox_DB)
690
        self.label_34.setGeometry(QtCore.QRect(20, 324, 121, 16))
691
        font = QtGui.QFont()
692
        font.setBold(False)
693
        font.setUnderline(False)
694
        font.setWeight(50)
695
        self.label_34.setFont(font)
696
        self.label_34.setObjectName("label_34")
697
        self.groupBox_7 = QtWidgets.QGroupBox(self.tab_2)
698
        self.groupBox_7.setGeometry(QtCore.QRect(9, 9, 229, 165))
699
        font = QtGui.QFont()
700
        font.setBold(True)
701
        font.setWeight(75)
702
        self.groupBox_7.setFont(font)
703
        self.groupBox_7.setObjectName("groupBox_7")
704
        self.radioButton_User = QtWidgets.QRadioButton(self.groupBox_7)
705
        self.radioButton_User.setEnabled(False)
706
        self.radioButton_User.setGeometry(QtCore.QRect(12, 135, 105, 19))
707
        font = QtGui.QFont()
708
        font.setBold(False)
709
        font.setWeight(50)
710
        self.radioButton_User.setFont(font)
711
        self.radioButton_User.setObjectName("radioButton_User")
712
        self.radioButton_Aramco = QtWidgets.QRadioButton(self.groupBox_7)
713
        self.radioButton_Aramco.setGeometry(QtCore.QRect(12, 108, 135, 19))
714
        font = QtGui.QFont()
715
        font.setBold(False)
716
        font.setWeight(50)
717
        self.radioButton_Aramco.setFont(font)
718
        self.radioButton_Aramco.setObjectName("radioButton_Aramco")
719
        self.radioButton_Mixed = QtWidgets.QRadioButton(self.groupBox_7)
720
        self.radioButton_Mixed.setGeometry(QtCore.QRect(12, 81, 209, 19))
721
        font = QtGui.QFont()
722
        font.setBold(False)
723
        font.setWeight(50)
724
        self.radioButton_Mixed.setFont(font)
725
        self.radioButton_Mixed.setObjectName("radioButton_Mixed")
726
        self.radioButton_Lummus = QtWidgets.QRadioButton(self.groupBox_7)
727
        self.radioButton_Lummus.setGeometry(QtCore.QRect(12, 54, 121, 19))
728
        font = QtGui.QFont()
729
        font.setBold(False)
730
        font.setWeight(50)
731
        self.radioButton_Lummus.setFont(font)
732
        self.radioButton_Lummus.setObjectName("radioButton_Lummus")
733
        self.radioButton_BD = QtWidgets.QRadioButton(self.groupBox_7)
734
        self.radioButton_BD.setGeometry(QtCore.QRect(12, 27, 134, 19))
735
        font = QtGui.QFont()
736
        font.setBold(False)
737
        font.setWeight(50)
738
        self.radioButton_BD.setFont(font)
739
        self.radioButton_BD.setObjectName("radioButton_BD")
740
        self.groupBox_Lummus = QtWidgets.QGroupBox(self.tab_2)
741
        self.groupBox_Lummus.setGeometry(QtCore.QRect(244, 9, 277, 437))
742
        font = QtGui.QFont()
743
        font.setBold(True)
744
        font.setWeight(75)
745
        self.groupBox_Lummus.setFont(font)
746
        self.groupBox_Lummus.setObjectName("groupBox_Lummus")
747
        self.label_35 = QtWidgets.QLabel(self.groupBox_Lummus)
748
        self.label_35.setGeometry(QtCore.QRect(12, 24, 85, 16))
749
        font = QtGui.QFont()
750
        font.setBold(False)
751
        font.setItalic(False)
752
        font.setUnderline(True)
753
        font.setWeight(50)
754
        font.setStrikeOut(False)
755
        self.label_35.setFont(font)
756
        self.label_35.setObjectName("label_35")
757
        self.label_36 = QtWidgets.QLabel(self.groupBox_Lummus)
758
        self.label_36.setGeometry(QtCore.QRect(16, 52, 85, 16))
759
        font = QtGui.QFont()
760
        font.setBold(False)
761
        font.setItalic(False)
762
        font.setUnderline(False)
763
        font.setWeight(50)
764
        font.setStrikeOut(False)
765
        self.label_36.setFont(font)
766
        self.label_36.setObjectName("label_36")
767
        self.pushButton = QtWidgets.QPushButton(self.groupBox_Lummus)
768
        self.pushButton.setGeometry(QtCore.QRect(16, 84, 85, 23))
769
        font = QtGui.QFont()
770
        font.setBold(False)
771
        font.setWeight(50)
772
        self.pushButton.setFont(font)
773
        self.pushButton.setObjectName("pushButton")
774
        self.label_37 = QtWidgets.QLabel(self.groupBox_Lummus)
775
        self.label_37.setGeometry(QtCore.QRect(12, 124, 85, 16))
776
        font = QtGui.QFont()
777
        font.setBold(False)
778
        font.setItalic(False)
779
        font.setUnderline(True)
780
        font.setWeight(50)
781
        font.setStrikeOut(False)
782
        self.label_37.setFont(font)
783
        self.label_37.setObjectName("label_37")
784
        self.label_38 = QtWidgets.QLabel(self.groupBox_Lummus)
785
        self.label_38.setGeometry(QtCore.QRect(16, 156, 169, 16))
786
        font = QtGui.QFont()
787
        font.setBold(False)
788
        font.setItalic(False)
789
        font.setUnderline(False)
790
        font.setWeight(50)
791
        font.setStrikeOut(False)
792
        self.label_38.setFont(font)
793
        self.label_38.setObjectName("label_38")
794
        self.label_39 = QtWidgets.QLabel(self.groupBox_Lummus)
795
        self.label_39.setGeometry(QtCore.QRect(12, 196, 121, 16))
796
        font = QtGui.QFont()
797
        font.setBold(False)
798
        font.setUnderline(True)
799
        font.setWeight(50)
800
        self.label_39.setFont(font)
801
        self.label_39.setObjectName("label_39")
802
        self.label_40 = QtWidgets.QLabel(self.groupBox_Lummus)
803
        self.label_40.setGeometry(QtCore.QRect(20, 264, 121, 16))
804
        font = QtGui.QFont()
805
        font.setBold(False)
806
        font.setUnderline(False)
807
        font.setWeight(50)
808
        self.label_40.setFont(font)
809
        self.label_40.setObjectName("label_40")
810
        self.label_41 = QtWidgets.QLabel(self.groupBox_Lummus)
811
        self.label_41.setGeometry(QtCore.QRect(20, 304, 121, 16))
812
        font = QtGui.QFont()
813
        font.setBold(False)
814
        font.setUnderline(False)
815
        font.setWeight(50)
816
        self.label_41.setFont(font)
817
        self.label_41.setObjectName("label_41")
818
        self.label_42 = QtWidgets.QLabel(self.groupBox_Lummus)
819
        self.label_42.setGeometry(QtCore.QRect(20, 284, 121, 16))
820
        font = QtGui.QFont()
821
        font.setBold(False)
822
        font.setUnderline(False)
823
        font.setWeight(50)
824
        self.label_42.setFont(font)
825
        self.label_42.setObjectName("label_42")
826
        self.label_43 = QtWidgets.QLabel(self.groupBox_Lummus)
827
        self.label_43.setGeometry(QtCore.QRect(20, 244, 121, 16))
828
        font = QtGui.QFont()
829
        font.setBold(False)
830
        font.setUnderline(False)
831
        font.setWeight(50)
832
        self.label_43.setFont(font)
833
        self.label_43.setObjectName("label_43")
834
        self.label_44 = QtWidgets.QLabel(self.groupBox_Lummus)
835
        self.label_44.setGeometry(QtCore.QRect(20, 324, 121, 16))
836
        font = QtGui.QFont()
837
        font.setBold(False)
838
        font.setUnderline(False)
839
        font.setWeight(50)
840
        self.label_44.setFont(font)
841
        self.label_44.setObjectName("label_44")
842
        self.label_45 = QtWidgets.QLabel(self.groupBox_Lummus)
843
        self.label_45.setGeometry(QtCore.QRect(20, 224, 121, 16))
844
        font = QtGui.QFont()
845
        font.setBold(False)
846
        font.setUnderline(False)
847
        font.setWeight(50)
848
        self.label_45.setFont(font)
849
        self.label_45.setObjectName("label_45")
850
        self.groupBox_Aramco = QtWidgets.QGroupBox(self.tab_2)
851
        self.groupBox_Aramco.setGeometry(QtCore.QRect(244, 9, 277, 437))
852
        font = QtGui.QFont()
853
        font.setBold(True)
854
        font.setWeight(75)
855
        self.groupBox_Aramco.setFont(font)
856
        self.groupBox_Aramco.setObjectName("groupBox_Aramco")
857
        self.label_61 = QtWidgets.QLabel(self.groupBox_Aramco)
858
        self.label_61.setGeometry(QtCore.QRect(12, 24, 85, 16))
859
        font = QtGui.QFont()
860
        font.setBold(False)
861
        font.setItalic(False)
862
        font.setUnderline(True)
863
        font.setWeight(50)
864
        font.setStrikeOut(False)
865
        self.label_61.setFont(font)
866
        self.label_61.setObjectName("label_61")
867
        self.label_62 = QtWidgets.QLabel(self.groupBox_Aramco)
868
        self.label_62.setGeometry(QtCore.QRect(4, 40, 269, 73))
869
        font = QtGui.QFont()
870
        font.setBold(False)
871
        font.setWeight(50)
872
        self.label_62.setFont(font)
873
        self.label_62.setObjectName("label_62")
874
        self.label_63 = QtWidgets.QLabel(self.groupBox_Aramco)
875
        self.label_63.setGeometry(QtCore.QRect(24, 120, 61, 17))
876
        font = QtGui.QFont()
877
        font.setBold(False)
878
        font.setWeight(50)
879
        self.label_63.setFont(font)
880
        self.label_63.setObjectName("label_63")
881
        self.label_64 = QtWidgets.QLabel(self.groupBox_Aramco)
882
        self.label_64.setGeometry(QtCore.QRect(24, 140, 221, 17))
883
        font = QtGui.QFont()
884
        font.setBold(False)
885
        font.setWeight(50)
886
        self.label_64.setFont(font)
887
        self.label_64.setObjectName("label_64")
888
        self.label_65 = QtWidgets.QLabel(self.groupBox_Aramco)
889
        self.label_65.setGeometry(QtCore.QRect(24, 160, 221, 17))
890
        font = QtGui.QFont()
891
        font.setBold(False)
892
        font.setWeight(50)
893
        self.label_65.setFont(font)
894
        self.label_65.setObjectName("label_65")
895
        self.label_66 = QtWidgets.QLabel(self.groupBox_Aramco)
896
        self.label_66.setGeometry(QtCore.QRect(44, 200, 181, 17))
897
        font = QtGui.QFont()
898
        font.setBold(False)
899
        font.setWeight(50)
900
        self.label_66.setFont(font)
901
        self.label_66.setObjectName("label_66")
902
        self.label_67 = QtWidgets.QLabel(self.groupBox_Aramco)
903
        self.label_67.setGeometry(QtCore.QRect(48, 212, 221, 17))
904
        font = QtGui.QFont()
905
        font.setBold(False)
906
        font.setWeight(50)
907
        self.label_67.setFont(font)
908
        self.label_67.setObjectName("label_67")
909
        self.label_68 = QtWidgets.QLabel(self.groupBox_Aramco)
910
        self.label_68.setGeometry(QtCore.QRect(64, 236, 161, 17))
911
        font = QtGui.QFont()
912
        font.setBold(False)
913
        font.setWeight(50)
914
        self.label_68.setFont(font)
915
        self.label_68.setObjectName("label_68")
916
        self.label_69 = QtWidgets.QLabel(self.groupBox_Aramco)
917
        self.label_69.setGeometry(QtCore.QRect(64, 256, 161, 17))
918
        font = QtGui.QFont()
919
        font.setBold(False)
920
        font.setWeight(50)
921
        self.label_69.setFont(font)
922
        self.label_69.setObjectName("label_69")
923
        self.label_70 = QtWidgets.QLabel(self.groupBox_Aramco)
924
        self.label_70.setGeometry(QtCore.QRect(64, 276, 161, 17))
925
        font = QtGui.QFont()
926
        font.setBold(False)
927
        font.setWeight(50)
928
        self.label_70.setFont(font)
929
        self.label_70.setObjectName("label_70")
930
        self.label_71 = QtWidgets.QLabel(self.groupBox_Aramco)
931
        self.label_71.setGeometry(QtCore.QRect(64, 292, 81, 17))
932
        font = QtGui.QFont()
933
        font.setBold(False)
934
        font.setWeight(50)
935
        self.label_71.setFont(font)
936
        self.label_71.setObjectName("label_71")
937
        self.label_72 = QtWidgets.QLabel(self.groupBox_Aramco)
938
        self.label_72.setGeometry(QtCore.QRect(64, 332, 81, 17))
939
        font = QtGui.QFont()
940
        font.setBold(False)
941
        font.setWeight(50)
942
        self.label_72.setFont(font)
943
        self.label_72.setObjectName("label_72")
944
        self.label_73 = QtWidgets.QLabel(self.groupBox_Aramco)
945
        self.label_73.setGeometry(QtCore.QRect(64, 316, 161, 17))
946
        font = QtGui.QFont()
947
        font.setBold(False)
948
        font.setWeight(50)
949
        self.label_73.setFont(font)
950
        self.label_73.setObjectName("label_73")
951
        self.label_74 = QtWidgets.QLabel(self.groupBox_Aramco)
952
        self.label_74.setGeometry(QtCore.QRect(64, 360, 161, 17))
953
        font = QtGui.QFont()
954
        font.setBold(False)
955
        font.setWeight(50)
956
        self.label_74.setFont(font)
957
        self.label_74.setObjectName("label_74")
958
        self.label_75 = QtWidgets.QLabel(self.groupBox_Aramco)
959
        self.label_75.setGeometry(QtCore.QRect(64, 380, 161, 17))
960
        font = QtGui.QFont()
961
        font.setBold(False)
962
        font.setWeight(50)
963
        self.label_75.setFont(font)
964
        self.label_75.setObjectName("label_75")
965
        self.groupBox_Mixed = QtWidgets.QGroupBox(self.tab_2)
966
        self.groupBox_Mixed.setGeometry(QtCore.QRect(244, 9, 277, 437))
967
        font = QtGui.QFont()
968
        font.setBold(True)
969
        font.setWeight(75)
970
        self.groupBox_Mixed.setFont(font)
971
        self.groupBox_Mixed.setObjectName("groupBox_Mixed")
972
        self.label_46 = QtWidgets.QLabel(self.groupBox_Mixed)
973
        self.label_46.setGeometry(QtCore.QRect(8, 40, 261, 81))
974
        font = QtGui.QFont()
975
        font.setBold(False)
976
        font.setWeight(50)
977
        self.label_46.setFont(font)
978
        self.label_46.setObjectName("label_46")
979
        self.label_47 = QtWidgets.QLabel(self.groupBox_Mixed)
980
        self.label_47.setGeometry(QtCore.QRect(12, 24, 149, 16))
981
        font = QtGui.QFont()
982
        font.setBold(False)
983
        font.setItalic(False)
984
        font.setUnderline(True)
985
        font.setWeight(50)
986
        font.setStrikeOut(False)
987
        self.label_47.setFont(font)
988
        self.label_47.setObjectName("label_47")
989
        self.label_48 = QtWidgets.QLabel(self.groupBox_Mixed)
990
        self.label_48.setGeometry(QtCore.QRect(8, 128, 149, 49))
991
        self.label_48.setObjectName("label_48")
992
        self.label_49 = QtWidgets.QLabel(self.groupBox_Mixed)
993
        self.label_49.setGeometry(QtCore.QRect(12, 116, 149, 16))
994
        font = QtGui.QFont()
995
        font.setBold(False)
996
        font.setUnderline(True)
997
        font.setWeight(50)
998
        self.label_49.setFont(font)
999
        self.label_49.setObjectName("label_49")
1000
        self.pushButton_2 = QtWidgets.QPushButton(self.groupBox_Mixed)
1001
        self.pushButton_2.setGeometry(QtCore.QRect(16, 212, 85, 23))
1002
        font = QtGui.QFont()
1003
        font.setBold(False)
1004
        font.setWeight(50)
1005
        self.pushButton_2.setFont(font)
1006
        self.pushButton_2.setObjectName("pushButton_2")
1007
        self.label_50 = QtWidgets.QLabel(self.groupBox_Mixed)
1008
        self.label_50.setGeometry(QtCore.QRect(16, 192, 85, 16))
1009
        font = QtGui.QFont()
1010
        font.setBold(False)
1011
        font.setItalic(False)
1012
        font.setUnderline(False)
1013
        font.setWeight(50)
1014
        font.setStrikeOut(False)
1015
        self.label_50.setFont(font)
1016
        self.label_50.setObjectName("label_50")
1017
        self.label_51 = QtWidgets.QLabel(self.groupBox_Mixed)
1018
        self.label_51.setGeometry(QtCore.QRect(12, 172, 173, 16))
1019
        font = QtGui.QFont()
1020
        font.setBold(False)
1021
        font.setItalic(False)
1022
        font.setUnderline(True)
1023
        font.setWeight(50)
1024
        font.setStrikeOut(False)
1025
        self.label_51.setFont(font)
1026
        self.label_51.setObjectName("label_51")
1027
        self.label_52 = QtWidgets.QLabel(self.groupBox_Mixed)
1028
        self.label_52.setGeometry(QtCore.QRect(20, 408, 121, 16))
1029
        font = QtGui.QFont()
1030
        font.setBold(False)
1031
        font.setUnderline(False)
1032
        font.setWeight(50)
1033
        self.label_52.setFont(font)
1034
        self.label_52.setObjectName("label_52")
1035
        self.label_53 = QtWidgets.QLabel(self.groupBox_Mixed)
1036
        self.label_53.setGeometry(QtCore.QRect(20, 348, 121, 16))
1037
        font = QtGui.QFont()
1038
        font.setBold(False)
1039
        font.setUnderline(False)
1040
        font.setWeight(50)
1041
        self.label_53.setFont(font)
1042
        self.label_53.setObjectName("label_53")
1043
        self.label_54 = QtWidgets.QLabel(self.groupBox_Mixed)
1044
        self.label_54.setGeometry(QtCore.QRect(20, 368, 121, 16))
1045
        font = QtGui.QFont()
1046
        font.setBold(False)
1047
        font.setUnderline(False)
1048
        font.setWeight(50)
1049
        self.label_54.setFont(font)
1050
        self.label_54.setObjectName("label_54")
1051
        self.label_55 = QtWidgets.QLabel(self.groupBox_Mixed)
1052
        self.label_55.setGeometry(QtCore.QRect(20, 308, 121, 16))
1053
        font = QtGui.QFont()
1054
        font.setBold(False)
1055
        font.setUnderline(False)
1056
        font.setWeight(50)
1057
        self.label_55.setFont(font)
1058
        self.label_55.setObjectName("label_55")
1059
        self.label_56 = QtWidgets.QLabel(self.groupBox_Mixed)
1060
        self.label_56.setGeometry(QtCore.QRect(20, 328, 121, 16))
1061
        font = QtGui.QFont()
1062
        font.setBold(False)
1063
        font.setUnderline(False)
1064
        font.setWeight(50)
1065
        self.label_56.setFont(font)
1066
        self.label_56.setObjectName("label_56")
1067
        self.label_57 = QtWidgets.QLabel(self.groupBox_Mixed)
1068
        self.label_57.setGeometry(QtCore.QRect(16, 264, 169, 16))
1069
        font = QtGui.QFont()
1070
        font.setBold(False)
1071
        font.setItalic(False)
1072
        font.setUnderline(False)
1073
        font.setWeight(50)
1074
        font.setStrikeOut(False)
1075
        self.label_57.setFont(font)
1076
        self.label_57.setObjectName("label_57")
1077
        self.label_58 = QtWidgets.QLabel(self.groupBox_Mixed)
1078
        self.label_58.setGeometry(QtCore.QRect(12, 288, 173, 16))
1079
        font = QtGui.QFont()
1080
        font.setBold(False)
1081
        font.setUnderline(True)
1082
        font.setWeight(50)
1083
        self.label_58.setFont(font)
1084
        self.label_58.setObjectName("label_58")
1085
        self.label_59 = QtWidgets.QLabel(self.groupBox_Mixed)
1086
        self.label_59.setGeometry(QtCore.QRect(12, 244, 177, 16))
1087
        font = QtGui.QFont()
1088
        font.setBold(False)
1089
        font.setItalic(False)
1090
        font.setUnderline(True)
1091
        font.setWeight(50)
1092
        font.setStrikeOut(False)
1093
        self.label_59.setFont(font)
1094
        self.label_59.setObjectName("label_59")
1095
        self.label_60 = QtWidgets.QLabel(self.groupBox_Mixed)
1096
        self.label_60.setGeometry(QtCore.QRect(20, 388, 121, 16))
1097
        font = QtGui.QFont()
1098
        font.setBold(False)
1099
        font.setUnderline(False)
1100
        font.setWeight(50)
1101
        self.label_60.setFont(font)
1102
        self.label_60.setObjectName("label_60")
1103
        self.tabWidget.addTab(self.tab_2, "")
599 1104
        self.tab = QtWidgets.QWidget()
600 1105
        self.tab.setObjectName("tab")
601 1106
        self.gridLayout_12 = QtWidgets.QGridLayout(self.tab)
......
637 1142
        self.verticalLayout_2.addItem(spacerItem7)
638 1143
        self.gridLayout_12.addLayout(self.verticalLayout_2, 0, 0, 1, 1)
639 1144
        self.tabWidget.addTab(self.tab, "")
640
        self.formLayout.setWidget(0, QtWidgets.QFormLayout.SpanningRole, self.tabWidget)
641
        self.buttonBox = QtWidgets.QDialogButtonBox(ConfigurationDialog)
642
        self.buttonBox.setOrientation(QtCore.Qt.Horizontal)
643
        self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.Cancel|QtWidgets.QDialogButtonBox.Ok)
644
        self.buttonBox.setObjectName("buttonBox")
645
        self.formLayout.setWidget(1, QtWidgets.QFormLayout.FieldRole, self.buttonBox)
1145
        self.gridLayout_15.addWidget(self.tabWidget, 1, 0, 1, 1)
646 1146

  
647 1147
        self.retranslateUi(ConfigurationDialog)
648
        self.tabWidget.setCurrentIndex(0)
1148
        self.tabWidget.setCurrentIndex(2)
649 1149
        self.buttonBox.accepted.connect(ConfigurationDialog.accept)
650 1150
        self.buttonBox.rejected.connect(ConfigurationDialog.reject)
651 1151
        QtCore.QMetaObject.connectSlotsByName(ConfigurationDialog)
652
        ConfigurationDialog.setTabOrder(self.tabWidget, self.lineEdit)
653 1152
        ConfigurationDialog.setTabOrder(self.lineEdit, self.lineEdit_2)
654 1153
        ConfigurationDialog.setTabOrder(self.lineEdit_2, self.lineEdit_3)
655 1154
        ConfigurationDialog.setTabOrder(self.lineEdit_3, self.lineEdit_4)
......
709 1208
        self.label_17.setText(_translate("ConfigurationDialog", "Decimal point after conversion :"))
710 1209
        self.label_Decimal_Expression.setText(_translate("ConfigurationDialog", "(From current Value to 0.XXXXXXXXX)"))
711 1210
        self.tabWidget.setTabText(self.tabWidget.indexOf(self.Unit), _translate("ConfigurationDialog", "Units"))
1211
        self.groupBox_DB.setTitle(_translate("ConfigurationDialog", "DB Manual Equation"))
1212
        self.label_26.setText(_translate("ConfigurationDialog", "Equation 1"))
1213
        self.label_24.setText(_translate("ConfigurationDialog", "<html><head/><body><p><img src=\":/images/BD_Equation_1.png\"/></p></body></html>"))
1214
        self.label_25.setText(_translate("ConfigurationDialog", "Equation 2"))
1215
        self.label_27.setText(_translate("ConfigurationDialog", "<html><head/><body><p><img src=\":/images/BD_Equation_2.png\"/></p></body></html>"))
1216
        self.label_28.setText(_translate("ConfigurationDialog", "Equation 3 (Min.)"))
1217
        self.label_29.setText(_translate("ConfigurationDialog", "- 0.7 kg/cm2"))
1218
        self.label_30.setText(_translate("ConfigurationDialog", "- 0.686 bar"))
1219
        self.label_31.setText(_translate("ConfigurationDialog", "- 9.964 psi"))
1220
        self.label_32.setText(_translate("ConfigurationDialog", "- 515 mmHg"))
1221
        self.label_33.setText(_translate("ConfigurationDialog", "- 68.662 kPa"))
1222
        self.label_34.setText(_translate("ConfigurationDialog", "- 0.069 MPa"))
1223
        self.groupBox_7.setTitle(_translate("ConfigurationDialog", "Equations"))
1224
        self.radioButton_User.setText(_translate("ConfigurationDialog", "User\'s Equation"))
1225
        self.radioButton_Aramco.setText(_translate("ConfigurationDialog", "Aramco-BP Equation"))
1226
        self.radioButton_Mixed.setText(_translate("ConfigurationDialog", "Mixed Equation (BD + Lummus)"))
1227
        self.radioButton_Lummus.setText(_translate("ConfigurationDialog", "Lummus Equation"))
1228
        self.radioButton_BD.setText(_translate("ConfigurationDialog", "BD Manual Equation"))
1229
        self.groupBox_Lummus.setTitle(_translate("ConfigurationDialog", "Lummus Equation"))
1230
        self.label_35.setText(_translate("ConfigurationDialog", "Equation 1"))
1231
        self.label_36.setText(_translate("ConfigurationDialog", "Lummus Chart"))
1232
        self.pushButton.setText(_translate("ConfigurationDialog", "Chart View"))
1233
        self.label_37.setText(_translate("ConfigurationDialog", "Equation 2"))
1234
        self.label_38.setText(_translate("ConfigurationDialog", "(Pump Discharge P) X 0.08"))
1235
        self.label_39.setText(_translate("ConfigurationDialog", "Equation 3 (Min.)"))
1236
        self.label_40.setText(_translate("ConfigurationDialog", "- 9.964 psi"))
1237
        self.label_41.setText(_translate("ConfigurationDialog", "- 68.662 kPa"))
1238
        self.label_42.setText(_translate("ConfigurationDialog", "- 515 mmHg"))
1239
        self.label_43.setText(_translate("ConfigurationDialog", "- 0.686 bar"))
1240
        self.label_44.setText(_translate("ConfigurationDialog", "- 0.069 MPa"))
1241
        self.label_45.setText(_translate("ConfigurationDialog", "- 0.7 kg/cm2"))
1242
        self.groupBox_Aramco.setTitle(_translate("ConfigurationDialog", "Aramco-BP Equation"))
1243
        self.label_61.setText(_translate("ConfigurationDialog", "Equation"))
1244
        self.label_62.setText(_translate("ConfigurationDialog", "<html><head/><body><p><img src=\":/images/Aramco_Equation.png\"/></p></body></html>"))
1245
        self.label_63.setText(_translate("ConfigurationDialog", "where,"))
1246
        self.label_64.setText(_translate("ConfigurationDialog", "Ps = Start Equipment Operating P."))
1247
        self.label_65.setText(_translate("ConfigurationDialog", "B = Base Pressure Drop"))
1248
        self.label_66.setText(_translate("ConfigurationDialog", "Control Valve Type           B, psi"))
1249
        self.label_67.setText(_translate("ConfigurationDialog", "__________________             _____"))
1250
        self.label_68.setText(_translate("ConfigurationDialog", "single plug                  11"))
1251
        self.label_69.setText(_translate("ConfigurationDialog", "double plug                 7"))
1252
        self.label_70.setText(_translate("ConfigurationDialog", "cage valve                   4"))
1253
        self.label_71.setText(_translate("ConfigurationDialog", "(unbalanced)"))
1254
        self.label_72.setText(_translate("ConfigurationDialog", "(balanced)"))
1255
        self.label_73.setText(_translate("ConfigurationDialog", "cage valve                   4"))
1256
        self.label_74.setText(_translate("ConfigurationDialog", "butterfly                      0"))
1257
        self.label_75.setText(_translate("ConfigurationDialog", "V-ball                         1"))
1258
        self.groupBox_Mixed.setTitle(_translate("ConfigurationDialog", "Mixed Equation (DB + Lummus)"))
1259
        self.label_46.setText(_translate("ConfigurationDialog", "<html><head/><body><p><img src=\":/images/BD_Equation_1.png\"/></p></body></html>"))
1260
        self.label_47.setText(_translate("ConfigurationDialog", "Equation 1 (DB Equation)"))
1261
        self.label_48.setText(_translate("ConfigurationDialog", "<html><head/><body><p><img src=\":/images/BD_Equation_2.png\"/></p></body></html>"))
1262
        self.label_49.setText(_translate("ConfigurationDialog", "Equation 2 (DB Equation)"))
1263
        self.pushButton_2.setText(_translate("ConfigurationDialog", "Chart View"))
1264
        self.label_50.setText(_translate("ConfigurationDialog", "Lummus Chart"))
1265
        self.label_51.setText(_translate("ConfigurationDialog", "Equation 3 (Lummus Equation)"))
1266
        self.label_52.setText(_translate("ConfigurationDialog", "- 0.069 MPa"))
1267
        self.label_53.setText(_translate("ConfigurationDialog", "- 9.964 psi"))
1268
        self.label_54.setText(_translate("ConfigurationDialog", "- 515 mmHg"))
1269
        self.label_55.setText(_translate("ConfigurationDialog", "- 0.7 kg/cm2"))
1270
        self.label_56.setText(_translate("ConfigurationDialog", "- 0.686 bar"))
1271
        self.label_57.setText(_translate("ConfigurationDialog", "(Pump Discharge P) X 0.08"))
1272
        self.label_58.setText(_translate("ConfigurationDialog", "Equation 5 (Common Min.)"))
1273
        self.label_59.setText(_translate("ConfigurationDialog", "Equation 4 (Lummus Equation)"))
1274
        self.label_60.setText(_translate("ConfigurationDialog", "- 68.662 kPa"))
1275
        self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab_2), _translate("ConfigurationDialog", "Control Valve"))
712 1276
        self.groupBox_4.setTitle(_translate("ConfigurationDialog", "Liquid Pressure Drop"))
713 1277
        self.label_10.setText(_translate("ConfigurationDialog", "- Select the friction loss equation."))
714 1278
        self.radioButton_Darcy.setText(_translate("ConfigurationDialog", "Darcy Equation (General Design)"))
715 1279
        self.radioButton_Hagen.setText(_translate("ConfigurationDialog", "Hagen-Williams Equation (Water Design)"))
716
        self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("ConfigurationDialog", "Calculation"))
1280
        self.tabWidget.setTabText(self.tabWidget.indexOf(self.tab), _translate("ConfigurationDialog", "Line Calculation Basis"))
717 1281
import Resource_rc
HYTOS/HYTOS/Resource_rc.py
9 9
from PyQt5 import QtCore
10 10

  
11 11
qt_resource_data = b"\
12
\x00\x00\x00\xfd\
12
\x00\x00\x01\x02\
13
\x89\
14
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
15
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
16
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
17
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
18
\x79\x71\xc9\x65\x3c\x00\x00\x00\x0b\x74\x45\x58\x74\x54\x69\x74\
19
\x6c\x65\x00\x5a\x6f\x6f\x6d\x3b\xcf\x09\xfe\xbc\x00\x00\x00\x8d\
20
\x49\x44\x41\x54\x78\x5e\xb5\x92\xcb\x0d\x83\x30\x10\x05\x43\x3b\
21
\xee\x25\x1d\xb8\x08\x2a\x60\x93\xd4\xe0\x2e\x2c\x38\x53\x0e\x17\
22
\xbb\x8d\xcd\x13\x7a\x5c\xac\xc5\xd2\xca\xe2\x30\xa7\xd1\x1b\xc9\
23
\x9f\x97\xaa\x0e\x71\x8a\xf7\x6f\xb7\x98\x40\x04\x19\x54\x92\x41\
24
\xa4\xbb\x0f\x70\xfc\x01\x6a\x41\x37\xf5\x02\x91\x83\x02\x04\x04\
25
\x22\xa0\xd0\xc5\x5e\x20\x33\x20\x86\x13\xba\xdc\x0b\x54\x06\x82\
26
\xe1\x02\x5d\x1d\x0e\x3c\x7a\x84\x15\x28\x71\x5f\xe2\x72\x8d\x7d\
27
\xcf\x68\x8f\x37\xcf\x47\x6a\xc7\x5f\x46\x4d\xda\x40\xb2\xc6\x9e\
28
\xc0\xd1\x8e\xbd\x81\x99\x91\x44\xe9\x0a\x0c\xf1\x07\x3a\x60\x24\
29
\x7e\x2f\x79\x1e\xbf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
30
\x82\
31
\x00\x00\x01\x08\
32
\x89\
33
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
34
\x00\x00\x19\x00\x00\x00\x11\x08\x02\x00\x00\x00\xa7\xd8\x90\x59\
35
\x00\x00\x00\xcf\x49\x44\x41\x54\x78\xda\x63\x34\x9e\xf9\x9f\x81\
36
\x4a\x80\x71\x04\x9a\x75\x26\xad\x11\x48\xee\xbc\x93\x5e\xbd\x4f\
37
\x02\xce\x35\x99\x55\x0f\x24\x93\x0d\xbf\x7a\xa9\xde\x94\x17\xd8\
38
\x0c\x64\x3f\xfc\xe0\xbb\xec\xb2\xd6\xda\xeb\x1c\x84\xcd\xfa\xf2\
39
\xcb\xc4\x61\x81\x37\x9a\x59\x5b\xa2\x8e\x4b\xf0\xec\x5a\x72\xa9\
40
\x00\xc8\x8e\xd1\x9b\xf0\xe2\x8b\x9b\xcf\x32\x4b\xc2\x66\xc1\x9d\
41
\x86\x6c\x16\x2e\x36\x01\xb3\x7e\xfd\x55\xfb\xf5\x97\x0f\xe8\x34\
42
\x64\x3d\x6b\xc3\xce\x01\x3d\x08\x77\xd7\xad\xb7\xc1\x51\x6b\x75\
43
\x08\x9b\x75\xfa\x69\x9c\xa9\xf4\x22\xa0\xd3\xdc\x55\x66\x22\xdb\
44
\x7f\x20\x61\x2b\x0f\xdb\x19\x88\x65\x56\x73\x23\x89\x0a\x7b\xa0\
45
\xe6\x63\xc9\xcb\x81\x0c\x36\xe6\x5b\x94\x86\x17\x50\x73\xab\xd3\
46
\x0b\x88\xa3\x28\x0d\x2f\x88\x22\xb8\x8f\x28\x75\x17\x90\x84\x3b\
47
\x0d\x6e\x3f\x24\xf8\x21\xe9\x2b\x78\x95\x11\x81\xf0\xa2\x04\x8c\
48
\x04\xb3\x00\xf1\x86\xaa\x8d\x8b\xee\xe3\xa4\x00\x00\x00\x00\x49\
49
\x45\x4e\x44\xae\x42\x60\x82\
50
\x00\x00\x00\xd0\
13 51
\x89\
14 52
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
15 53
\x00\x00\x23\x00\x00\x00\x23\x08\x03\x00\x00\x00\x29\x07\x43\x6b\
16 54
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
17 55
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
18
\x06\x50\x4c\x54\x45\x00\x00\x00\x00\x00\x00\xa5\x67\xb9\xcf\x00\
19
\x00\x00\x01\x74\x52\x4e\x53\x00\x40\xe6\xd8\x66\x00\x00\x00\x09\
20
\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7\x6f\xa8\
21
\x64\x00\x00\x00\x73\x49\x44\x41\x54\x38\x4f\xcd\xcc\x41\x0e\x00\
22
\x21\x08\x03\x40\xfd\xff\xa7\x57\x56\xa2\x45\x5a\xf5\x68\xe3\x81\
23
\x86\x91\xf2\x60\x6a\xf5\x21\x67\xac\xaa\x46\x68\x14\x0a\x46\x20\
24
\x30\xc6\xbc\xc4\xa0\x81\x16\x12\x0d\x47\x8b\xa1\x68\x35\x0c\x25\
25
\x43\x10\x59\x25\xc4\xbe\xaf\x88\x99\x36\x07\x45\x4d\x2c\xc2\xb4\
26
\x06\x55\x98\x80\x94\x41\x24\x0d\x20\x6d\x26\xda\x98\x8e\xec\x6d\
27
\x8c\x21\x73\x5b\xd3\xd5\xc9\xfc\xe8\xe2\xce\xc9\xdc\xdc\x71\x34\
28
\x66\x1f\x52\xa6\x79\x27\xa5\x7c\xae\x05\x00\xb7\xb6\x43\xa8\xc9\
29
\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
30
\x00\x00\x03\xf0\
56
\x09\x50\x4c\x54\x45\x00\x00\x00\x00\x00\x00\x7d\xbe\xff\x88\x0e\
57
\x7e\x78\x00\x00\x00\x01\x74\x52\x4e\x53\x00\x40\xe6\xd8\x66\x00\
58
\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\
59
\xc7\x6f\xa8\x64\x00\x00\x00\x43\x49\x44\x41\x54\x38\x4f\xed\xd0\
60
\x41\x0a\x00\x20\x08\x44\xd1\xa9\xfb\x1f\x3a\x82\x0f\x82\x28\xe4\
61
\x26\x2a\x7a\xcb\xe1\x6f\x54\x27\x6a\x39\x0a\xa9\xa7\x7e\x33\x31\
62
\x04\xac\xe1\xa7\x86\xa2\xda\x38\x57\x34\x5c\x63\x28\xaa\x0d\x43\
63
\xe0\xfd\x86\xaf\x44\x28\xd6\x9a\x2d\xa4\x01\x3f\xfb\x04\x9b\xa8\
64
\xe2\x49\xac\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
65
\x00\x00\x03\xc3\
31 66
\x89\
32 67
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
33 68
\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\
34
\x00\x00\x00\x23\x74\x45\x58\x74\x54\x69\x74\x6c\x65\x00\x43\x61\
35
\x6e\x63\x65\x6c\x3b\x53\x74\x6f\x70\x3b\x45\x78\x69\x74\x3b\x42\
36
\x61\x72\x73\x3b\x52\x69\x62\x62\x6f\x6e\x3b\x4c\x96\x96\xb2\x00\
37
\x00\x03\x88\x49\x44\x41\x54\x78\x5e\x1d\x90\x6b\x4c\x53\x67\x18\
38
\xc7\xff\x3d\xbd\x40\xcb\x1a\x2e\x32\xb5\x5c\x9d\x59\x8b\x4c\xa6\
39
\x75\xd8\xd1\x38\x36\x65\x2e\x9b\x03\x59\xb6\x7d\x58\x96\x65\x32\
40
\x59\xe6\x44\xa5\x25\x71\x64\x44\x74\xcb\x4c\xb6\xec\xc2\x37\x70\
41
\xc4\x44\x9d\xd3\x8d\x28\x85\x00\x5e\x46\x83\xab\x69\xc6\x16\x8d\
42
\xa1\x23\x84\x26\x4e\xc8\xaa\xac\x0c\x91\x49\xa1\x17\x5a\xce\xe9\
43
\xe9\x39\xcf\xde\x9e\xe7\xe4\x77\xf2\xcb\xff\xb9\x24\xe7\x20\xe6\
44
\xe9\x43\xcc\x3b\x88\x95\xd1\x2b\x00\xa0\xfe\xe3\xd0\x81\x67\xa7\
45
\x5a\x5b\xba\xee\xb7\x1d\x9d\x08\x1e\x6b\x4d\xa5\x49\xfb\xdd\xa3\
46
\xce\xef\xdd\x1f\x36\x58\x01\x68\x18\xaa\x98\xa7\x1f\xd1\x91\x5e\
47
\x20\x2d\xe9\x80\xa1\x9d\x74\x1e\x3e\xf6\xe0\xf8\xa7\xfc\x7f\x67\
48
\x3b\x69\x79\xe0\x02\xc5\xbc\x43\xb4\xc2\x58\x1e\xb8\x48\x0b\xe7\
49
\xba\x68\xe6\x44\x1b\xef\x3b\x72\xf0\x33\x00\x99\x0c\x8e\x1d\x50\
50
\x16\x55\x4e\x7b\x55\xd6\xc1\xed\x95\x43\xc6\xc2\xb5\xbb\x73\x9f\
51
\xdf\x02\x59\x88\x83\x84\x24\xe4\x24\x0f\x10\xa0\xd2\xea\xa0\xd2\
52
\x65\x40\xad\x37\x20\x3c\xfe\x17\xc2\xc1\x87\xa3\xed\xbf\xde\x7c\
53
\xf3\xda\xd4\x74\x84\x03\xa0\x6e\xa8\xa8\xe8\x30\xac\x5f\xb3\x3b\
54
\x7b\xab\x19\x01\xb7\x17\xae\x23\xdf\xe1\xce\xc5\xeb\xec\x90\xa0\
55
\xe0\xeb\x71\xa3\xcf\xd9\x81\xc0\xb0\x17\xc6\xf2\x52\x18\x0b\xd6\
56
\xbd\x74\xbc\xfa\x85\x6e\x00\x3a\x0c\xbd\xfd\x96\x6d\xf2\x50\x53\
57
\x2a\xd4\xff\x03\x8d\xb7\x34\xd1\x85\x57\xdf\x21\xcf\xb0\x8f\x2e\
58
\x37\xb5\xd3\x70\xed\x5e\x72\xd7\xd5\x2b\xee\xf9\x65\x4c\xe9\xf9\
59
\x1c\x1f\xd3\x92\xeb\x0c\x4d\x3a\x0e\x4b\xe7\xf6\xec\xd9\x09\xcf\
60
\xde\xfa\xd3\x81\xaf\x4e\xd0\xa3\xd3\x5f\xd3\x99\xe2\x72\xba\x3f\
61
\x3d\x47\x8f\x97\x12\x34\xfd\x20\x44\xbd\xce\x93\x0a\xf7\x98\xcf\
62
\x2f\xae\xd0\xdf\x53\x73\xca\xcc\xfc\xa9\x2f\x29\x70\xb2\x9d\xdc\
63
\xaf\xd7\xf5\x6b\x48\x94\x5e\x91\x82\x01\xc4\x17\x38\x94\x5a\x2d\
64
\x58\x1c\x74\x61\xad\xa3\x19\x2a\xb5\x0a\xd6\x4f\x9a\x01\x02\x72\
65
\x73\x0c\xc8\xd4\xaa\x31\x3b\xe4\x42\x89\xd5\x8c\xf8\x5d\x3f\x24\
66
\x11\x50\x4b\xb2\x8d\x93\x84\x54\x89\x14\x5e\x04\x1f\x9c\xc1\x86\
67
\x3c\x09\xa1\x1b\xd7\xe1\xef\xea\x86\x24\x03\x39\x46\x3d\xb2\xb3\
68
\xf5\x90\x25\xc0\xdf\xd9\x8d\xd0\xc8\x35\x94\xe6\x88\x6c\x36\x08\
69
\x31\xf4\x08\x52\x32\x65\xd2\x08\xbc\x00\x21\xb2\x0a\x35\xa7\x82\
70
\xb8\xbc\x04\x29\xc2\x23\x9a\x10\xd8\x12\x41\x79\x88\x00\x70\x88\
71
\xb1\x4c\x8a\x84\x21\xea\x75\xa0\x94\x04\x4a\x8a\x48\xf2\x00\x17\
72
\xe7\x85\x87\x62\x92\x20\xb3\x70\xe6\x9f\x28\x84\xea\x37\x50\xf0\
73
\x7e\x23\x24\x59\x46\x86\x8e\x43\xa6\x4e\xa3\xb8\x69\x5f\x23\xf8\
74
\xea\x7a\x04\x67\x63\xec\x78\x0a\xc9\x64\x0a\xf1\x55\xfe\xb1\x26\
75
\x9a\xe0\xbd\x91\xac\x8c\xfd\xf9\x10\x10\x8e\x26\xf1\x5a\x5b\x33\
76
\x78\x8d\x1e\x86\x0c\xf6\xcd\xe7\xcf\x22\x5d\x45\xfb\x3f\x02\xa0\
77
\xc7\xce\x36\x07\x6e\x5c\xbd\x84\x82\x5c\x35\x62\xa2\x0e\x4b\x09\
78
\x7e\x0c\xad\x05\x1b\x5f\xfc\xa9\x7c\x9b\xe4\xab\xae\xa0\x5b\x2f\
79
\xdb\xe9\xe6\xbe\x0f\x88\x0f\x85\x68\xfc\xdb\x0e\x1a\xa9\xaa\x64\
80
\x6c\x57\x9c\x65\x4a\xef\x56\x4d\x15\xfd\xb9\x63\x33\xfd\xbc\xc9\
81
\x4a\x8e\x75\x1b\x6a\x01\x40\xdf\x51\x68\xb9\xe4\x2a\x7b\x86\x26\
82
\x6a\xb6\xd2\xed\x1a\x1b\xf5\x59\xca\xc8\x53\xb5\x8d\xfc\xb5\x76\
83
\xf2\xd7\xd9\xd3\xae\x64\xb7\x77\xd9\x68\x62\xd7\x16\xea\x2f\x2b\
84
\xa7\x6f\x4c\xe6\x2b\x00\x8c\x1a\x00\xc2\xf9\xc5\x7f\x9d\x8d\xa2\
85
\xc9\x92\x12\xc5\xe7\x2c\x85\x32\x36\x99\xf3\x20\xa7\x7f\xd2\x72\
86
\x04\x00\x21\xdf\x98\x85\xf5\x6b\xf2\x20\x44\x57\x70\x6f\x9e\xc7\
87
\x4c\x4c\xf2\xf7\x44\x16\x9a\x01\x24\x30\xdb\xf2\x1e\x00\xa8\x2b\
88
\x75\x4f\x98\xbe\xc8\x2e\xee\xed\x7a\xf2\x29\x1a\x30\x6f\xa4\x51\
89
\xeb\xd3\x34\x66\x33\x93\x8f\xf1\x3b\xf3\x41\x96\x9d\x62\xbd\xcf\
90
\x73\x8a\xaf\x6e\xd6\xea\x4b\x00\x68\x82\xce\x77\xa1\x4a\xbf\xd2\
91
\x55\xd2\x79\x99\x03\x60\x68\x30\xe4\xef\x28\xe2\x74\x07\x0c\x1c\
92
\x67\xd7\x42\x55\x04\x10\x44\xc2\x5c\x9c\xe4\x3b\x41\x49\xf8\xb1\
93
\x67\x35\xf4\x1b\x80\x38\xdb\x93\x00\xe0\x7f\x69\x24\xec\xfb\x01\
94
\xd5\x89\xcc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
95
\x00\x00\x1b\xff\
69
\x00\x00\x00\x1b\x74\x45\x58\x74\x54\x69\x74\x6c\x65\x00\x41\x64\
70
\x64\x3b\x50\x6c\x75\x73\x3b\x42\x61\x72\x73\x3b\x52\x69\x62\x62\
71
\x6f\x6e\x3b\x95\x06\x33\x2f\x00\x00\x03\x63\x49\x44\x41\x54\x78\
72
\x5e\x35\x92\x7d\x6c\x53\x55\x18\xc6\x9f\x73\xee\x6d\xeb\x64\x63\
73
\xa3\xae\xfb\x60\xa3\xa3\x6e\x33\xb8\xc5\x65\x81\xe0\xd8\x70\x7e\
74
\x21\xcc\x1a\x43\xa2\xa2\x23\x04\xfe\x30\x01\x51\x2a\x86\xc4\xe9\
75
\x00\x13\x24\x51\xff\x50\x33\x67\x42\x00\x43\xb2\x44\x36\x4c\x48\
76
\x30\x31\x46\x5c\x24\x8b\x44\x41\xc0\x98\x0c\x45\xb4\xd0\x65\xcd\
77
\xba\x4e\xca\xe8\x2a\xac\x5d\xbb\xde\x8f\xf3\xe1\xbd\x27\xf1\x39\
78
\x79\x73\xde\x9c\x3c\xbf\xf7\x23\x39\x64\x22\x6f\xc2\xd5\x43\xa5\
79
\x3e\x02\x80\x44\x3e\x3f\xd7\x52\x52\x5a\xb1\x43\x23\xfa\x06\x68\
80
\x5a\x33\x81\xe4\x92\xf3\x29\xc6\xad\xf3\x99\x54\xe2\xf8\xc9\xc3\
81
\xdb\xa6\x01\x88\x58\xde\x94\x0a\x9c\x2c\x58\x70\xc1\xd5\x1b\xb6\
82
\xfa\xf6\x1d\xbb\x32\x78\x60\xf8\x1a\x1b\xfe\x25\x29\x7f\xb8\x31\
83
\x27\xc7\xef\xe4\xe5\xd5\x74\x5e\x9e\xbb\x99\x91\x23\x97\x66\xe4\
84
\x81\x93\x7f\xe4\xde\x18\x18\xdb\x0d\xc0\xeb\x32\x2e\xab\xba\xb6\
85
\x3f\xd5\xeb\x7d\x6c\xcb\xbe\x6f\x1b\x83\xfe\x9e\x67\xba\x82\xe0\
86
\x84\xc0\xe4\x12\x36\x97\xca\xe0\xd1\x09\xbc\x94\x80\x5b\x0c\xe7\
87
\xaf\xcc\x60\x6a\x66\xee\xec\xf7\x5f\xbc\xbb\x75\x3a\xfa\xeb\x22\
88
\x01\xa0\xbd\x3e\x78\x61\xb0\x29\x14\xd8\xdb\xf3\x44\x08\xa9\xac\
89
\x0d\x21\x81\xd3\x67\x2e\x23\x31\x9d\x81\xab\x95\x0d\x01\x6c\xeb\
90
\xed\x82\x4e\x80\x9a\x72\x2f\xc6\x2e\x4c\xe1\x7a\x34\x31\x30\xd4\
91
\xdf\x73\x50\x7f\xb9\xff\xab\x55\x1e\x9f\x6f\xcf\x93\xeb\x82\xb8\
92
\x79\xbb\x08\x8d\x52\x50\x4a\x14\xfc\xc9\xce\x4e\x95\xf7\x9d\xb8\
93
\x0c\xd3\x96\x28\x4a\x81\x79\xc7\xd3\xdd\x11\x44\xf2\x9f\xec\x5b\
94
\xe1\xd7\x3e\x1b\xa6\xbe\xb2\xc0\x9b\xed\xcd\x95\x5a\x7c\xce\x44\
95
\xd1\x74\x4c\x16\x87\xc9\x04\x5c\x05\xeb\xfc\x68\x6f\x0d\xaa\xdc\
96
\xb0\x84\x13\xd2\x09\x8e\x89\xb4\xe1\xbc\x57\x79\x96\x56\x87\x5e\
97
\xd5\x85\xd0\x3a\xcb\xfd\xa5\x48\xe7\x19\x7e\xfa\x71\x1c\x77\x6e\
98
\xdf\xc5\xff\x12\x20\x0a\x70\x75\xf4\xe8\x59\x75\xd7\xd4\xfa\xf1\
99
\xf4\xa6\x35\xa8\x2c\x5f\x02\xa2\x95\x6c\xd4\x6d\x2e\xeb\x1d\x16\
100
\x0b\x45\x5b\xc1\x9f\xee\x5e\x0f\x4a\x88\x5a\x45\x82\x80\x71\x81\
101
\x13\x7d\x1b\x61\xdb\x0c\x1e\x5d\x43\xe4\xc8\xcf\x58\x58\xe4\xd0\
102
\xa1\x81\x0b\xba\x5c\xb7\x6d\xee\xbd\xb7\x68\xc1\xe6\x04\xae\xea\
103
\x6b\x1f\x40\xd9\x12\x1f\x0a\x26\x53\x85\xbc\x0e\x54\x57\x53\x01\
104
\x09\x40\x4a\x80\x10\xe2\x78\x05\xee\xe6\x05\x98\xcd\xa1\x5b\x86\
105
\x99\xc8\xe7\xcd\x47\x84\xee\xc3\xf2\xba\x00\x76\x7c\x34\x0a\x4a\
106
\xa9\x32\x7e\x79\x30\x0c\xe1\x50\x5b\xde\xff\x0e\x9a\xa6\x81\x50\
107
\x82\x15\x0d\xd5\x60\x4c\xa2\x68\x58\x28\x2e\x16\x93\xd4\x28\xe4\
108
\x2f\x66\x66\xb3\x90\x90\x68\xef\x68\xc5\xe6\x17\x1f\xc7\xe6\x17\
109
\xba\x61\x1a\x26\x0c\x93\xa9\x02\x9c\x71\x3c\xf7\xfc\x3a\x3c\x1b\
110
\xee\x40\x4b\x5b\x23\x98\xe0\x98\x9f\xcb\xa1\x90\xfd\x77\x4c\xcf\
111
\xa4\x62\x43\xb1\x1b\x4b\x77\xad\xad\xf6\x7b\xb2\x36\x47\x8e\x10\
112
\x50\x0a\xa5\xd2\x12\x1d\x5c\x48\x35\x4d\x3a\x67\x41\x08\xa1\x56\
113
\x11\x4c\x20\x1e\x4b\xb1\xd9\xf8\x6f\xa7\x08\x80\xfb\x1e\xdd\x3e\
114
\x34\xb0\xa2\x29\xb4\xe7\xe1\x35\x0f\xc2\xe2\x2e\x20\x11\xbf\x16\
115
\xc3\xfc\xbd\x05\x05\x57\x56\x2d\xc3\xca\x96\x46\x08\xb8\xb4\xc4\
116
\xe4\x9f\x49\x24\xa2\x7f\x1f\x19\x3f\x1d\xd9\xaf\x03\xb0\xfe\x1a\
117
\xfd\xe0\x3d\x11\x3e\xdc\x64\x31\xb1\xa9\x65\x75\x08\x92\x12\xb4\
118
\xad\x6d\x55\x5f\x58\x12\x80\xd9\x02\x39\x83\x43\x30\x8e\xc9\xeb\
119
\x49\xdc\x9a\x98\x1a\x75\xe0\x43\x00\x0c\xa4\x6d\x09\x00\x5a\x49\
120
\x45\x70\x59\xdb\x4b\xc7\x8e\x77\xed\xfc\xda\xea\xfd\xf8\x92\xdc\
121
\x3b\x12\x95\xef\x7c\x13\x97\x7d\x4e\x44\x4e\x45\xe5\x2b\xce\x5b\
122
\xe7\xae\x33\x85\x55\xe1\x0f\xdf\x06\x50\xee\x32\xb3\x0e\x4b\xd2\
123
\x4c\x02\x12\xa8\xf2\x10\xea\xae\xd3\xd0\x19\x69\xbb\x3f\xd0\xbc\
124
\xdd\xe3\x2b\xeb\x06\xd5\x6a\xd5\xd0\x9c\xcd\xda\x66\xee\x62\xee\
125
\xd6\xef\x43\xa9\xab\x23\x31\x00\x86\x03\xab\xce\xff\x01\x9d\x3a\
126
\xad\x15\xcc\xd8\xd2\xe0\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\
127
\x60\x82\
128
\x00\x00\x04\x42\
96 129
\x89\
97 130
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
98
\x00\x01\x3a\x00\x00\x00\xb6\x08\x03\x00\x00\x00\x7e\x99\xb1\x79\
131
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
132
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
133
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
134
\x79\x71\xc9\x65\x3c\x00\x00\x03\xe4\x49\x44\x41\x54\x78\xda\xec\
135
\x97\x6d\x6c\x53\x55\x18\xc7\xff\xb7\xaf\xeb\x28\x8e\x35\x1a\x37\
136
\x60\x59\x20\x19\x1a\x19\x2f\xcb\xa2\x24\x2c\xd1\x99\x85\x2d\x6c\
137
\x18\x50\xcc\xc8\xc4\xa0\x51\x20\x11\x62\x42\x7c\x8b\xd1\xf0\x41\
138
\x48\x7c\x89\x1f\x4c\x30\x71\xfb\x80\x1f\x74\x51\xcc\x12\x42\x24\
139
\x30\x15\xa1\x4b\xb0\x38\x35\xea\xb6\x08\x18\x1d\x8c\x8d\xcd\xb5\
140
\xa5\x6b\xd7\x7a\xdb\xfb\xda\xf6\xf2\x9c\xeb\xdd\x64\xba\xdb\x40\
141
\x38\x8d\x5f\x3c\xc9\xd3\x73\xf2\x9c\x7b\xef\xf9\x9d\xe7\x9c\xe7\
142
\xa5\x82\x61\x18\xf8\x2f\x9b\xa3\x98\x1f\x5f\xd9\xfa\x5a\x6b\xd1\
143
\x01\x72\xb9\x1c\x98\x15\x15\x45\x9d\xd5\xe5\xf3\x79\x53\x9c\x4e\
144
\xc7\xc9\xfd\xef\xf5\xfc\xae\xeb\x59\x68\x9a\x06\x59\x56\x90\x23\
145
\x3d\x93\xa2\x5a\xc0\xe1\x70\x98\x92\xcb\xe5\x71\xbc\xef\x97\x9a\
146
\xee\xcf\xbf\x55\xed\x9e\x75\xbd\xfd\x61\xdf\x6d\x2d\xf6\xf2\xd3\
147
\x0f\x9a\x7d\xfd\x63\x6f\x74\x50\xb7\x99\xa4\x82\x44\x20\x59\xc4\
148
\xf4\xd9\x6c\x0e\x87\x3e\xfe\xda\x43\x56\x92\x9e\xd8\xb4\xae\x74\
149
\xe6\x3d\x41\x10\xfe\x02\xe0\xb1\xe3\xda\xb6\xd7\xdf\x0f\x2c\x5a\
150
\xb0\x27\x9d\x51\x1d\x6c\xd7\xec\x48\xd8\xd5\x9e\xb9\xe0\x3a\x41\
151
\x7c\xf0\x49\xd0\xe7\x72\x3a\x52\x4f\x6e\x69\x28\x9b\x63\x01\xf6\
152
\xd3\x73\xe6\xf2\x28\x31\x55\x17\x5a\xc4\x30\xf2\x13\x83\x9f\xed\
153
\xae\xa5\xa1\xf4\xd6\xe1\xa0\x3e\xa3\x5f\xfd\xc8\xfe\x17\xbc\x1e\
154
\xf7\xde\x44\x32\x23\x14\x7a\x5f\xd1\x74\x1c\xea\x3e\x7d\x87\xa2\
155
\x67\x45\x4b\xb5\xf0\x06\x0b\x08\xd5\xed\x4d\xcb\x0b\xee\xb2\xe7\
156
\xcc\xc8\x52\xea\x18\xe4\x18\x49\x6a\x46\x5f\x55\x19\x78\x67\x3c\
157
\x9c\x10\x6e\xc6\x52\x8a\xaa\xe3\x8f\xc8\xb4\xff\x5f\x16\xb8\x99\
158
\xb6\xc0\xe7\x46\x5d\xc7\xe1\x21\x0b\x66\x56\xaf\xa7\xa6\xe1\x72\
159
\x39\xd1\xd6\xb8\x06\xf7\x2c\xab\xc0\xd2\x8a\x00\xca\x16\xfa\x10\
160
\xec\xff\x15\x1f\x1d\x0b\xcd\xf9\xc6\xee\x6d\x8d\xd8\xb1\xa5\xc1\
161
\x1c\x1f\xdc\x77\x8b\x00\x6d\xeb\xab\xe6\xd5\x77\x1f\xbd\x8c\xe7\
162
\xb7\x37\x61\x73\x53\x1d\xb9\x9d\x13\xb1\xb8\x88\xb4\xa4\x62\xd7\
163
\xb6\x87\xe6\x00\xbc\xf8\xcc\x46\x6c\x6d\xa9\x47\xff\xb9\xb3\x6b\
164
\x9b\x9b\x9b\xc5\x5b\xb6\x80\x5d\xab\xa9\xbe\x1b\x8f\xd3\x87\xbf\
165
\xf9\x69\x04\x53\x49\x09\x65\x7e\x2f\x26\xae\x65\xf0\xf3\x6f\x91\
166
\xd9\x67\xf6\x10\xe0\xa3\x1b\xd6\xe2\xd5\x57\x5e\xda\xd1\xd5\xd5\
167
\x39\x49\xb1\x23\xc6\x0d\xa0\xf3\xc0\x53\x38\x7a\xfa\x22\x92\x69\
168
\x99\xfc\xde\x40\x42\x54\xcd\x5e\xd1\xb2\xe6\xfc\xae\xf6\x46\x74\
169
\xb4\x3d\x80\x67\x0f\x7e\x85\x63\x5d\x9d\x13\x96\x8b\x82\x1b\xc0\
170
\x97\xe7\x86\x11\x4f\x49\x37\x44\xc6\xbf\x73\xcb\x85\xde\x37\xa1\
171
\xaa\x1a\xba\x4f\x0c\x60\x74\x32\x35\x7f\x20\xba\x5d\x80\x68\x3c\
172
\x6d\x3b\x67\x17\xe4\xd8\x5d\x29\x08\x10\x4d\xc8\x38\x3b\x18\x01\
173
\xef\x4c\x49\x5e\x14\xb4\x86\x83\x03\x47\x76\xd6\xd9\x02\x8c\x47\
174
\xd3\x78\x77\xdf\xc3\x58\x57\x5b\x69\x86\x52\x5e\x8d\x92\x13\x28\
175
\x14\x60\xc3\x73\x9f\x26\x0a\x5a\x20\x42\x16\xb8\xb7\x3a\x80\x44\
176
\x52\x34\x13\x0a\xaf\x46\x11\x93\xbc\x23\xce\x86\xbd\xb6\x00\xa9\
177
\xb4\x86\xe5\x4b\xca\xe1\xa1\x99\x94\xac\x83\xe7\x21\x94\x3a\xbd\
178
\x38\xf5\xfd\x15\x36\xfc\xc2\x16\x20\x1c\x97\xb0\xb1\xa1\xc6\x0c\
179
\x9b\x59\x8e\xbb\x67\xe9\xd9\x30\x04\xf4\x0f\x8d\x4f\xd2\xf9\x5f\
180
\xb4\x05\x88\xc4\x65\xac\x59\x71\x17\x64\x2a\x30\x78\x9e\xbf\xd7\
181
\xe3\xc0\x58\x44\x84\xaa\xc8\xa7\x6c\xdd\x50\xcf\xb2\x4a\x46\x40\
182
\xb9\xdf\x43\x21\x55\x42\x9e\xa3\x17\x94\x96\x96\x20\x34\x70\x15\
183
\xba\x9c\x0c\xda\x02\x30\xf7\x6b\x59\xbf\x0c\x12\x95\x4e\x9a\x9e\
184
\xe5\x67\x7e\x2a\x3e\x3c\x2e\x37\x4e\x86\x2e\xe9\xd1\x0b\xbd\x21\
185
\x5b\x80\x08\xed\x7a\x7b\xeb\x62\x64\x24\x85\xb3\xf9\xdd\x74\xb9\
186
\x75\xc4\x62\xb1\xa1\xc4\x68\x7f\xc6\x16\xe0\xda\xb4\x82\xc5\x77\
187
\xfa\x10\x8e\xc6\xe9\x02\xf2\x03\xf0\xbb\x4b\x70\x7e\x24\x0e\x45\
188
\x8c\xfe\x68\x1b\x8a\x99\xfb\xd5\xdf\x57\x49\x97\x4f\x31\xe3\x37\
189
\xaf\xd3\x67\xb5\x5f\x89\xd7\x83\x13\xa1\x21\x24\xc7\x7e\xf8\xce\
190
\x16\x20\x3c\x25\xa1\xbd\xa5\x16\x22\x65\x35\x9d\xe3\xee\x3d\x6e\
191
\x5a\x42\x70\xe2\xfc\xa5\x29\xc4\x86\xfb\xae\xda\x03\xd0\xf9\xdf\
192
\xbf\x72\x09\x14\x39\x83\xf2\x32\x3f\x37\x00\x5f\x89\x17\xc3\x13\
193
\xa2\xed\xbc\xcb\x2a\x38\xc7\x63\x49\xa5\xaa\x65\xef\x91\xa2\xfd\
194
\x4b\x32\x72\xfa\x9f\xac\xb3\x64\x2e\x00\x55\xbb\xab\xac\x82\x33\
195
\xf0\xcf\x82\x81\x27\x03\x09\x4b\x42\xda\x7c\x47\x20\x59\xd5\x6e\
196
\xb8\xc8\x00\x9a\xb5\xd6\xff\x6d\xb6\x5d\x17\x60\x00\x9c\x6b\xb9\
197
\x4b\xe9\x7a\x63\x5e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\
198
\x82\
199
\x00\x00\x02\x59\
200
\x89\
201
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
202
\x00\x00\x83\x00\x00\x00\x88\x08\x03\x00\x00\x00\xf3\x84\xa8\x97\
99 203
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
100 204
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
101
\xde\x50\x4c\x54\x45\x00\x00\x00\x00\x00\x00\x01\x01\x01\x02\x02\
205
\x2d\x50\x4c\x54\x45\x00\x00\x00\x00\x00\x00\x18\x18\x18\x20\x20\
206
\x20\x30\x30\x30\x40\x40\x40\x50\x50\x50\x60\x60\x60\x78\x78\x78\
207
\x7d\x7d\x7d\x7e\x7e\x7e\x7f\x7f\x7f\x8f\x8f\x8f\x9f\x9f\x9f\xbf\
208
\xbf\xbf\xe9\x0a\xeb\xca\x00\x00\x00\x01\x74\x52\x4e\x53\x00\x40\
209
\xe6\xd8\x66\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\
210
\x00\x0e\xc3\x01\xc7\x6f\xa8\x64\x00\x00\x01\xa8\x49\x44\x41\x54\
211
\x78\x5e\xed\x9c\xd1\x6e\xc2\x30\x0c\x45\xcb\x06\x63\x6b\x37\xfe\
212
\xff\x73\x17\xe7\x9a\x2c\x2c\xa1\xf3\x43\x16\x5b\xea\x3d\x12\x6d\
213
\x54\xb9\xce\x51\x5a\x48\xb1\x02\x4b\x60\x2e\xa7\x3b\x17\x3d\xd2\
214
\x63\x64\x54\x97\x53\xd9\xec\x31\x32\xaa\x65\x64\x76\x5b\x54\xcb\
215
\xc8\xec\xb6\xa8\x96\x91\xd9\x6d\x51\x2d\x23\xb3\xdb\xa2\x1e\x59\
216
\xd3\xeb\x45\x1a\x79\xb3\x47\x1b\xb5\xe9\xbe\xa6\x8d\x5a\xd7\xad\
217
\x09\xd4\x77\xcf\x54\x3e\xb4\xef\x3b\x7a\x78\x2a\xad\xc3\xdb\x36\
218
\x95\x6b\xcf\xe1\x4b\x5b\x93\xb8\xc5\x70\x90\x3b\xbf\x86\x0e\x80\
219
\x0e\x80\x0e\xe0\xa8\x0e\xbf\x27\x2d\x0f\x87\xf2\x39\x79\xc5\xce\
220
\xd5\x01\x4f\x16\xab\x9b\x83\x8c\x81\x3e\xdd\xb8\x39\x48\xff\x21\
221
\x1c\x32\x67\x0f\x07\x90\xda\xbc\x16\x74\xe0\x3d\x09\xea\x71\x78\
222
\x95\x86\xa3\x83\xf6\x2f\xb8\x39\x54\xd0\x01\xd0\x01\xd0\x01\xd0\
223
\x01\xd0\x01\xd0\x01\xd0\x01\x04\x70\xd8\x02\x38\xf8\x7d\xdf\xac\
224
\xa0\x03\xa0\x03\x38\xaa\x43\x84\x9a\x18\xeb\x93\x09\x3a\x80\x48\
225
\x0e\x5a\xa3\x15\xdc\x1c\xb4\xfe\x21\x1c\xd5\x01\xa4\xb6\x77\xcd\
226
\x5c\x1c\x74\x2c\x7c\x1d\x32\x2e\x75\xb9\x58\xe3\x20\x0d\x1f\x07\
227
\x90\xda\x07\x1f\x87\x30\xf7\xa4\xd4\x48\x1d\xc7\xa1\xcc\x59\x11\
228
\x1c\x1c\xeb\xd5\xc5\x41\xa1\x03\xa0\x03\xa0\x03\xf0\x70\x08\xb5\
229
\xfe\x41\xa1\x03\xa0\x03\xa0\x03\xa0\x03\xa0\x03\xa0\x03\xa0\x03\
230
\xa0\x03\xa0\x03\x38\xbc\x43\x9c\xf5\xb4\x7e\x0e\x5c\x4f\x5b\x39\
231
\xf8\xd5\xa3\x40\x6a\xf3\x5a\xd0\x81\xf7\x24\x48\x0e\xb9\xfe\x20\
232
\xfd\x73\x3d\xed\x03\x74\x00\x74\x00\x74\x00\x31\x1c\xde\x6f\x53\
233
\xf9\xec\x39\xcc\x27\xa2\x83\xfe\xe2\xf9\x87\x73\xd9\xec\x62\x08\
234
\x7b\x1a\xa2\x5d\x3f\x27\xcf\xa7\x3a\xa9\xee\x60\x08\x33\x66\xea\
235
\x60\x3c\xd3\x10\x66\xcc\xd4\xc1\x78\xa6\x21\xcc\x98\xa9\x83\xf1\
236
\x4c\x43\x98\x31\x53\x83\xf9\x7f\x44\xfe\xd1\xc1\x88\x41\xf5\xaf\
237
\x90\x65\xf9\x06\x3b\xe4\x25\x82\x24\x15\xaf\x65\x00\x00\x00\x00\
238
\x49\x45\x4e\x44\xae\x42\x60\x82\
239
\x00\x00\x02\x59\
240
\x89\
241
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
242
\x00\x00\x83\x00\x00\x00\x88\x08\x03\x00\x00\x00\xf3\x84\xa8\x97\
243
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
244
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
245
\x2d\x50\x4c\x54\x45\x00\x00\x00\x00\x00\x00\x18\x18\x18\x20\x20\
246
\x20\x30\x30\x30\x40\x40\x40\x50\x50\x50\x60\x60\x60\x78\x78\x78\
247
\x7d\x7d\x7d\x7e\x7e\x7e\x7f\x7f\x7f\x8f\x8f\x8f\x9f\x9f\x9f\xbf\
248
\xbf\xbf\xe9\x0a\xeb\xca\x00\x00\x00\x01\x74\x52\x4e\x53\x00\x40\
249
\xe6\xd8\x66\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\
250
\x00\x0e\xc3\x01\xc7\x6f\xa8\x64\x00\x00\x01\xa8\x49\x44\x41\x54\
251
\x78\x5e\xed\x9c\xd1\x6e\xc2\x30\x0c\x45\xcb\x06\x63\x6b\x37\xfe\
252
\xff\x73\x17\xe7\x9a\x2c\x2c\xa1\xf3\x43\x16\x5b\xea\x3d\x12\x6d\
253
\x54\xb9\xce\x51\x5a\x48\xb1\x02\x4b\x60\x2e\xa7\x3b\x17\x3d\xd2\
254
\x63\x64\x54\x97\x53\xd9\xec\x31\x32\xaa\x65\x64\x76\x5b\x54\xcb\
255
\xc8\xec\xb6\xa8\x96\x91\xd9\x6d\x51\x2d\x23\xb3\xdb\xa2\x1e\x59\
256
\xd3\xeb\x45\x1a\x79\xb3\x47\x1b\xb5\xe9\xbe\xa6\x8d\x5a\xd7\xad\
257
\x09\xd4\x77\xcf\x54\x3e\xb4\xef\x3b\x7a\x78\x2a\xad\xc3\xdb\x36\
258
\x95\x6b\xcf\xe1\x4b\x5b\x93\xb8\xc5\x70\x90\x3b\xbf\x86\x0e\x80\
259
\x0e\x80\x0e\xe0\xa8\x0e\xbf\x27\x2d\x0f\x87\xf2\x39\x79\xc5\xce\
260
\xd5\x01\x4f\x16\xab\x9b\x83\x8c\x81\x3e\xdd\xb8\x39\x48\xff\x21\
261
\x1c\x32\x67\x0f\x07\x90\xda\xbc\x16\x74\xe0\x3d\x09\xea\x71\x78\
262
\x95\x86\xa3\x83\xf6\x2f\xb8\x39\x54\xd0\x01\xd0\x01\xd0\x01\xd0\
263
\x01\xd0\x01\xd0\x01\xd0\x01\x04\x70\xd8\x02\x38\xf8\x7d\xdf\xac\
264
\xa0\x03\xa0\x03\x38\xaa\x43\x84\x9a\x18\xeb\x93\x09\x3a\x80\x48\
265
\x0e\x5a\xa3\x15\xdc\x1c\xb4\xfe\x21\x1c\xd5\x01\xa4\xb6\x77\xcd\
266
\x5c\x1c\x74\x2c\x7c\x1d\x32\x2e\x75\xb9\x58\xe3\x20\x0d\x1f\x07\
267
\x90\xda\x07\x1f\x87\x30\xf7\xa4\xd4\x48\x1d\xc7\xa1\xcc\x59\x11\
268
\x1c\x1c\xeb\xd5\xc5\x41\xa1\x03\xa0\x03\xa0\x03\xf0\x70\x08\xb5\
269
\xfe\x41\xa1\x03\xa0\x03\xa0\x03\xa0\x03\xa0\x03\xa0\x03\xa0\x03\
270
\xa0\x03\xa0\x03\x38\xbc\x43\x9c\xf5\xb4\x7e\x0e\x5c\x4f\x5b\x39\
271
\xf8\xd5\xa3\x40\x6a\xf3\x5a\xd0\x81\xf7\x24\x48\x0e\xb9\xfe\x20\
272
\xfd\x73\x3d\xed\x03\x74\x00\x74\x00\x74\x00\x31\x1c\xde\x6f\x53\
273
\xf9\xec\x39\xcc\x27\xa2\x83\xfe\xe2\xf9\x87\x73\xd9\xec\x62\x08\
274
\x7b\x1a\xa2\x5d\x3f\x27\xcf\xa7\x3a\xa9\xee\x60\x08\x33\x66\xea\
275
\x60\x3c\xd3\x10\x66\xcc\xd4\xc1\x78\xa6\x21\xcc\x98\xa9\x83\xf1\
276
\x4c\x43\x98\x31\x53\x83\xf9\x7f\x44\xfe\xd1\xc1\x88\x41\xf5\xaf\
277
\x90\x65\xf9\x06\x3b\xe4\x25\x82\x24\x15\xaf\x65\x00\x00\x00\x00\
278
\x49\x45\x4e\x44\xae\x42\x60\x82\
279
\x00\x00\x02\x9d\
280
\x89\
281
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
282
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
283
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
284
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
285
\x79\x71\xc9\x65\x3c\x00\x00\x02\x3f\x49\x44\x41\x54\x78\xda\x62\
286
\xfc\xff\xff\x3f\xc3\x40\x02\xc6\x51\x07\x0c\x3a\x07\x34\xcd\xd8\
287
\xcd\x06\xa4\xba\x81\x38\x06\x88\x85\xa8\x64\xcf\x7b\x20\x5e\x0c\
288
\xc4\xa5\x75\x19\xae\xbf\x90\x25\x58\xb0\x28\xee\x02\xe2\x3c\x2a\
289
\x7b\x54\x10\x6a\xe6\x77\x20\xae\x40\x96\x60\xc2\xa2\x38\x96\x86\
290
\x21\x9e\x8a\x2e\x80\xcd\x01\xc8\xc1\xbe\x1d\x88\xa5\x40\x51\x45\
291
\x26\x96\x82\x9a\x81\xcd\x6c\x9c\x51\x80\x0c\x92\x81\xf8\x39\xb1\
292
\xde\x5b\xb0\x6a\xc7\x7e\x20\xe5\x80\x2c\x66\xad\x2d\xac\xa2\xaa\
293
\x6d\x7a\x07\x97\x1e\x26\x02\x66\x3e\x27\x25\x7c\xbf\xbe\xba\x15\
294
\xc0\xf0\xff\xff\x13\x64\xb1\x25\x53\xaa\xff\xe0\xd3\xc3\x44\xcd\
295
\x08\xfe\xf4\xf4\xe2\xd7\xff\x0c\xff\xdf\xa3\x09\x73\xd3\xc5\x01\
296
\xc0\xe0\x67\x94\x34\x0c\x3d\xc5\xc8\xc8\xa4\x0b\x16\xf8\xff\xff\
297
\x0b\x31\xfa\x98\xa8\x65\x39\x90\x3a\x03\xc4\x86\x20\xab\x7f\x7e\
298
\x7a\xde\xf2\xfc\xc2\x6a\xf7\x7f\x7f\x7e\x1e\x07\xf2\x7f\xe1\xd3\
299
\xcb\x42\xa5\x00\x38\x0b\xb5\xfc\xdf\xf7\xf7\x8f\xca\x5f\x5c\x58\
300
\x03\x4a\xf9\x1f\x1f\x1e\x9e\x1a\x00\x72\x10\xcd\x1c\x00\xf5\x39\
301
\xcc\xf2\xbf\x5f\x5f\xdf\xce\x7b\x75\x65\xf3\x01\x20\xfb\x1d\xc8\
302
\x01\x40\xfc\x1b\x9a\x1d\xa9\xef\x00\x34\xcb\x7f\x7f\x7e\x7e\x35\
303
\xf5\xcd\x8d\x9d\xa7\x90\x2c\xff\xd9\x38\x7d\x17\xc1\x8a\x86\x85\
304
\x0a\x71\xfe\xf3\xe3\xe3\xb3\xb1\xef\xee\x1c\xbc\x8c\x64\xf9\x2f\
305
\x62\x2c\x27\xcb\x01\x48\x96\x1b\x01\xf1\xb7\xf7\xf7\x8e\x84\x7f\
306
\x78\x78\x0a\x54\xd0\xbc\x85\x05\x3b\xb1\x96\x93\xec\x00\xa0\xe5\
307
\xa0\x5c\x73\x1a\x6c\x39\x30\x9b\xbd\xbd\xbd\x2f\x18\x98\xf7\x1f\
308
\x42\x2d\xff\x44\xaa\xe5\x44\x39\x00\x54\xbc\x82\x4a\xb8\xdf\xdf\
309
\xde\x7e\x17\x50\xb0\x3c\x0e\xb5\xfc\xe3\xeb\xeb\xdb\x03\xbf\xbc\
310
\xbc\xf1\x14\x66\x39\xd0\xe2\xdf\xe4\x44\x27\x31\x21\xe0\xc0\x2d\
311
\xaa\x7a\xf9\x3f\x83\x0a\xa8\x84\xd3\x03\x5a\xfe\xfe\xe5\x95\x4d\
312
\xfe\xdf\xde\xdc\x7d\x49\xa9\xe5\xc4\x47\x01\x23\xa3\x2c\x23\x03\
313
\xa3\xd8\xff\xff\xff\xde\x01\xf3\xb8\xcf\x8f\x0f\x4f\xde\x20\x59\
314
\xfe\x87\x92\xac\x4c\x4a\x49\xc8\x0e\xf4\xfd\x6f\xa0\x63\xfe\x01\
315
\xd9\x1f\xa8\x61\x39\x31\x0e\x90\x44\x09\x08\x26\x66\x71\x71\x1d\
316
\xbf\x7e\x50\x89\x47\xa8\x84\x43\x02\x12\x94\x44\xc1\x1c\x2b\x2d\
317
\x41\xe5\xa5\x53\x6b\xff\x22\xd5\x6a\xbf\xa0\x0e\x07\xe1\xbf\x04\
318
\xf4\x4b\x03\xf1\x2c\x52\x1d\xf0\x0e\xa9\xe5\xe2\xa5\xa6\x63\xee\
319
\x05\x0c\x6a\x6a\x55\x9a\xef\x88\x89\x82\xc5\x34\x6c\x13\xce\x21\
320
\x26\x04\xca\xa0\x15\x48\x2c\xb4\x35\x4b\xcd\x66\x79\xed\x68\xcf\
321
\x68\xd4\x01\xe8\x00\x20\xc0\x00\xb5\x3e\x05\x00\x7d\xf4\x61\x62\
322
\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
323
\x00\x00\x02\x9d\
324
\x89\
325
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
326
\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\
327
\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\
328
\x00\x41\x64\x6f\x62\x65\x20\x49\x6d\x61\x67\x65\x52\x65\x61\x64\
329
\x79\x71\xc9\x65\x3c\x00\x00\x02\x3f\x49\x44\x41\x54\x78\xda\x62\
330
\xfc\xff\xff\x3f\xc3\x40\x02\xc6\x51\x07\x0c\x3a\x07\x34\xcd\xd8\
331
\xcd\x06\xa4\xba\x81\x38\x06\x88\x85\xa8\x64\xcf\x7b\x20\x5e\x0c\
332
\xc4\xa5\x75\x19\xae\xbf\x90\x25\x58\xb0\x28\xee\x02\xe2\x3c\x2a\
333
\x7b\x54\x10\x6a\xe6\x77\x20\xae\x40\x96\x60\xc2\xa2\x38\x96\x86\
334
\x21\x9e\x8a\x2e\x80\xcd\x01\xc8\xc1\xbe\x1d\x88\xa5\x40\x51\x45\
335
\x26\x96\x82\x9a\x81\xcd\x6c\x9c\x51\x80\x0c\x92\x81\xf8\x39\xb1\
336
\xde\x5b\xb0\x6a\xc7\x7e\x20\xe5\x80\x2c\x66\xad\x2d\xac\xa2\xaa\
337
\x6d\x7a\x07\x97\x1e\x26\x02\x66\x3e\x27\x25\x7c\xbf\xbe\xba\x15\
338
\xc0\xf0\xff\xff\x13\x64\xb1\x25\x53\xaa\xff\xe0\xd3\xc3\x44\xcd\
339
\x08\xfe\xf4\xf4\xe2\xd7\xff\x0c\xff\xdf\xa3\x09\x73\xd3\xc5\x01\
340
\xc0\xe0\x67\x94\x34\x0c\x3d\xc5\xc8\xc8\xa4\x0b\x16\xf8\xff\xff\
341
\x0b\x31\xfa\x98\xa8\x65\x39\x90\x3a\x03\xc4\x86\x20\xab\x7f\x7e\
342
\x7a\xde\xf2\xfc\xc2\x6a\xf7\x7f\x7f\x7e\x1e\x07\xf2\x7f\xe1\xd3\
343
\xcb\x42\xa5\x00\x38\x0b\xb5\xfc\xdf\xf7\xf7\x8f\xca\x5f\x5c\x58\
344
\x03\x4a\xf9\x1f\x1f\x1e\x9e\x1a\x00\x72\x10\xcd\x1c\x00\xf5\x39\
345
\xcc\xf2\xbf\x5f\x5f\xdf\xce\x7b\x75\x65\xf3\x01\x20\xfb\x1d\xc8\
346
\x01\x40\xfc\x1b\x9a\x1d\xa9\xef\x00\x34\xcb\x7f\x7f\x7e\x7e\x35\
347
\xf5\xcd\x8d\x9d\xa7\x90\x2c\xff\xd9\x38\x7d\x17\xc1\x8a\x86\x85\
348
\x0a\x71\xfe\xf3\xe3\xe3\xb3\xb1\xef\xee\x1c\xbc\x8c\x64\xf9\x2f\
349
\x62\x2c\x27\xcb\x01\x48\x96\x1b\x01\xf1\xb7\xf7\xf7\x8e\x84\x7f\
350
\x78\x78\x0a\x54\xd0\xbc\x85\x05\x3b\xb1\x96\x93\xec\x00\xa0\xe5\
351
\xa0\x5c\x73\x1a\x6c\x39\x30\x9b\xbd\xbd\xbd\x2f\x18\x98\xf7\x1f\
352
\x42\x2d\xff\x44\xaa\xe5\x44\x39\x00\x54\xbc\x82\x4a\xb8\xdf\xdf\
353
\xde\x7e\x17\x50\xb0\x3c\x0e\xb5\xfc\xe3\xeb\xeb\xdb\x03\xbf\xbc\
354
\xbc\xf1\x14\x66\x39\xd0\xe2\xdf\xe4\x44\x27\x31\x21\xe0\xc0\x2d\
355
\xaa\x7a\xf9\x3f\x83\x0a\xa8\x84\xd3\x03\x5a\xfe\xfe\xe5\x95\x4d\
356
\xfe\xdf\xde\xdc\x7d\x49\xa9\xe5\xc4\x47\x01\x23\xa3\x2c\x23\x03\
357
\xa3\xd8\xff\xff\xff\xde\x01\xf3\xb8\xcf\x8f\x0f\x4f\xde\x20\x59\
358
\xfe\x87\x92\xac\x4c\x4a\x49\xc8\x0e\xf4\xfd\x6f\xa0\x63\xfe\x01\
359
\xd9\x1f\xa8\x61\x39\x31\x0e\x90\x44\x09\x08\x26\x66\x71\x71\x1d\
360
\xbf\x7e\x50\x89\x47\xa8\x84\x43\x02\x12\x94\x44\xc1\x1c\x2b\x2d\
361
\x41\xe5\xa5\x53\x6b\xff\x22\xd5\x6a\xbf\xa0\x0e\x07\xe1\xbf\x04\
362
\xf4\x4b\x03\xf1\x2c\x52\x1d\xf0\x0e\xa9\xe5\xe2\xa5\xa6\x63\xee\
363
\x05\x0c\x6a\x6a\x55\x9a\xef\x88\x89\x82\xc5\x34\x6c\x13\xce\x21\
364
\x26\x04\xca\xa0\x15\x48\x2c\xb4\x35\x4b\xcd\x66\x79\xed\x68\xcf\
365
\x68\xd4\x01\xe8\x00\x20\xc0\x00\xb5\x3e\x05\x00\x7d\xf4\x61\x62\
366
\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
367
\x00\x00\x02\x5e\
368
\x89\
369
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
370
\x00\x00\xd1\x00\x00\x00\x4b\x08\x03\x00\x00\x00\xd9\x19\x92\xf8\
371
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
372
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
373
\x2a\x50\x4c\x54\x45\x00\x00\x00\x00\x00\x00\x08\x08\x08\x10\x10\
374
\x10\x18\x18\x18\x20\x20\x20\x28\x28\x28\x33\x99\xff\x38\x38\x38\
375
\x40\x40\x40\x48\x48\x48\x50\x50\x50\x58\x58\x58\x60\x60\x60\xa0\
376
\x92\x8b\x3a\x00\x00\x00\x01\x74\x52\x4e\x53\x00\x40\xe6\xd8\x66\
377
\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\x00\x0e\xc3\
378
\x01\xc7\x6f\xa8\x64\x00\x00\x01\xb0\x49\x44\x41\x54\x68\x43\xed\
379
\x98\x8b\x72\x83\x20\x10\x45\x31\x8f\xe6\xd1\xfa\xff\xbf\x5b\x56\
380
\xae\x5a\x2d\x08\x82\x2e\x26\xb9\x67\x26\x0a\xb2\x66\xf7\x84\x40\
381
\x9c\x18\x42\x08\x21\x84\x10\x42\xde\x98\x66\x2b\xf0\x7e\xd5\x39\
382
\x6f\x56\xc9\x51\x94\xb6\xab\xe3\x74\x0c\xa5\x2d\xab\x38\x84\x51\
383
\x73\x41\xe3\x2f\xed\x03\x0d\x0f\x2d\x16\x0d\x98\x46\x1e\x40\xe9\
384
\x31\xd6\x70\x45\x8d\x73\x30\x6c\xcc\xdd\xf5\x27\x0e\x0f\x77\xad\
385
\x0f\x6a\xeb\x2b\xa1\x82\x1f\x5b\xd4\xd5\x35\xe7\xc8\x90\x8d\xb2\
386
\x87\x13\xae\x78\x78\xf6\x52\x4b\x41\x2a\x40\x28\xb6\xf1\xda\x99\
387
\x38\xa3\x19\xe4\x0a\xa5\xee\x58\x8d\xfe\x83\xed\x8e\x8b\xa4\x87\
388
\xd4\x55\x42\xf6\xf8\x2f\xd2\xa5\xff\x56\x05\x19\xd6\xd7\xa5\xa6\
389
\xd2\x90\xdb\xae\x95\xc0\x2a\xea\x70\x3a\xf6\xe8\x5f\x25\xdd\xee\
390
\xf0\x8d\x8e\x8d\x5b\xd8\x28\x77\xa6\xb9\xa3\x21\x9c\xa5\xac\xe6\
391
\x0b\x3d\x80\x9d\x0c\x3d\x0b\xb6\xbb\x19\x18\xec\xa9\x36\x49\xbe\
392
\xef\xd1\x7c\x07\x7f\xe2\xfa\x3a\x2a\x29\x6d\xf7\x38\xf7\x8f\xd8\
393
\x9a\xdb\x89\x3d\xb3\x56\x31\xda\x37\x69\x05\x25\xef\xe3\xdc\x76\
394
\xdc\xb5\x95\xb0\xee\xf7\x05\xb9\x74\xd0\xc8\x46\xa3\x32\x68\x94\
395
\x03\x8d\xca\xa0\x51\x0e\x34\x2a\x43\xdf\xe8\x86\x73\x80\xc8\x70\
396
\x1c\x75\xa3\x5b\xcc\xa8\x54\x49\xd9\xe8\x66\x41\x33\x80\x2f\x22\
397
\x76\x0b\xce\xc6\xb4\xf6\xa5\x6a\x24\xd5\xa6\x81\x1b\x1c\xe9\xd3\
398
\x2a\x99\x14\x8d\x50\x6c\x22\xee\x1e\xcb\xa4\xe3\x65\x8c\x78\x05\
399
\x23\xf4\x12\x90\x68\xad\x27\xfd\x21\x07\x72\x27\xb0\xfa\x06\x41\
400
\x7d\x8e\x04\x97\x78\x89\x49\x84\x74\xd2\xa9\x62\x24\x45\xa2\x11\
401
\x60\x36\x8e\x62\x13\x90\xe8\x2a\x46\xab\x7f\x61\xfb\x6a\xc3\x8c\
402
\x11\x6a\x46\xf2\xf7\x25\xda\x39\xa4\x4f\xab\x9a\x11\xce\xd9\xc4\
403
\x8c\x70\x36\x46\xfe\xe0\x7e\x09\xa3\x55\xd0\x28\x07\x1a\x95\x41\
404
\xa3\x1c\x68\x54\x06\x8d\x72\xa0\x51\x19\x6f\x68\xa4\x01\x72\x11\
405
\x42\x08\x21\x84\x90\xcf\xc3\x98\x5f\x4b\x83\x0e\x79\x51\xab\xaf\
406
\x2c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
407
\x00\x00\x00\xea\
408
\x89\
409
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
410
\x00\x00\x5f\x00\x00\x00\x16\x08\x03\x00\x00\x00\x91\xc5\xb0\x63\
411
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
412
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
413
\x06\x50\x4c\x54\x45\x00\x00\x00\x33\x99\xff\x0e\xcb\x3c\xd8\x00\
414
\x00\x00\x01\x74\x52\x4e\x53\x00\x40\xe6\xd8\x66\x00\x00\x00\x09\
415
\x70\x48\x59\x73\x00\x00\x0e\xc3\x00\x00\x0e\xc3\x01\xc7\x6f\xa8\
416
\x64\x00\x00\x00\x60\x49\x44\x41\x54\x48\x4b\xcd\xcd\x41\x0e\x80\
417
\x30\x08\x00\xc1\xf2\xff\x4f\x4b\x75\xaf\x24\xa4\xb8\xc6\xb9\xd8\
418
\x18\x58\xd6\xc7\x82\xaf\x25\xdc\x03\x91\x78\x2a\xe4\xfe\xce\x8b\
419
\x07\x9e\xbc\x77\x80\xbc\xd5\xa7\x9e\xf8\xf1\x3e\x35\x9e\xfe\xdb\
420
\xef\xad\x0d\xfa\xad\xc5\x51\xbf\xb1\xb9\xa7\x26\xc8\x94\x18\x3b\
421
\x47\xa7\xc2\xd4\x00\xa1\x02\x43\xc7\xc8\x08\xdc\xfa\xdd\xe7\xe5\
422
\x70\xeb\x85\xb5\x2e\xc7\x0e\x01\x53\x9e\x65\xd2\x08\x00\x00\x00\
423
\x00\x49\x45\x4e\x44\xae\x42\x60\x82\
424
\x00\x00\x1e\xfe\
425
\x89\
426
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\
427
\x00\x00\xd0\x00\x00\x00\xc6\x08\x03\x00\x00\x00\x94\xf5\xfe\xc0\
428
\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\
429
\x04\x67\x41\x4d\x41\x00\x00\xb1\x8f\x0b\xfc\x61\x05\x00\x00\x00\
430
\xf0\x50\x4c\x54\x45\x00\x00\x00\x00\x00\x00\x01\x01\x01\x02\x02\
102 431
\x02\x03\x03\x03\x04\x04\x04\x05\x05\x05\x06\x06\x06\x07\x07\x07\
103 432
\x08\x08\x08\x09\x09\x09\x0a\x0a\x0a\x0b\x0b\x0b\x0c\x0c\x0c\x0d\
104 433
\x0d\x0d\x0e\x0e\x0e\x0f\x0f\x0f\x10\x10\x10\x11\x11\x11\x12\x12\
105 434
\x12\x13\x13\x13\x14\x14\x14\x15\x15\x15\x16\x16\x16\x17\x17\x17\
106 435
\x18\x18\x18\x19\x19\x19\x1a\x1a\x1a\x1b\x1b\x1b\x1c\x1c\x1c\x1d\
107
\x1d\x1d\x1e\x1e\x1e\x1f\x1f\x1f\x20\x20\x20\x21\x21\x21\x22\x22\
108
\x22\x23\x23\x23\x24\x24\x24\x25\x25\x25\x26\x26\x26\x27\x27\x27\
109
\x28\x28\x28\x2b\x2b\x2b\xca\xca\xca\xcf\xcf\xcf\xd2\xd2\xd2\xd3\
110
\xd3\xd3\xd4\xd4\xd4\xd5\xd5\xd5\xd6\xd6\xd6\xd7\xd7\xd7\xd8\xd8\
111
\xd8\xd9\xd9\xd9\xda\xda\xda\xdb\xdb\xdb\xdc\xdc\xdc\xdd\xdd\xdd\
112
\xde\xde\xde\xdf\xdf\xdf\xe0\xe0\xe0\xe1\xe1\xe1\xe2\xe2\xe2\xe3\
113
\xe3\xe3\xe4\xe4\xe4\xe5\xe5\xe5\xe6\xe6\xe6\xe7\xe7\xe7\xe8\xe8\
114
\xe8\xe9\xe9\xe9\xea\xea\xea\xeb\xeb\xeb\xec\xec\xec\xed\xed\xed\
115
\xee\xee\xee\x67\x1a\x5d\x02\x00\x00\x00\x01\x74\x52\x4e\x53\x00\
116
\x40\xe6\xd8\x66\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\xc3\
117
\x00\x00\x0e\xc3\x01\xc7\x6f\xa8\x64\x00\x00\x1a\x9d\x49\x44\x41\
118
\x54\x78\x5e\xed\x5d\x89\x62\xdb\x46\x92\x65\xa1\x81\xc6\x0d\xde\
119
\x94\x2c\x5b\x1e\x27\x99\x64\x67\x67\xcf\xb9\x76\x26\xc7\xd8\x89\
120
\x6d\xc9\xf2\xff\xff\xd0\xbe\xea\x2e\x9c\x04\x40\x00\xa4\x64\x53\
121
\xc3\x97\x58\xc4\x45\xb0\xfb\xa1\xce\xbe\x30\xfb\xaa\x41\xa1\x6c\
122
\x5c\x30\x00\xf7\xf6\xe3\x13\xff\x09\xe7\x44\x66\xef\x82\x81\x00\
123
\x6d\x86\x40\x02\xdc\x80\xb7\x3e\xf0\x9f\x0b\x86\xe1\x23\x98\xdb\
124
\x69\x52\x60\x4f\x8e\x5c\x30\x18\xab\x35\x69\x97\xe6\x4b\x75\xe1\
125
\x6e\x0c\x58\xe6\x14\x6d\x59\x63\xc9\x8b\xb5\x1c\xbd\x60\x10\x3c\
126
\xa2\x05\xd1\x6d\xec\xaa\x80\x68\x29\x07\x2f\x18\x00\x48\x9b\xa2\
127
\x68\x45\x14\x68\x87\x6e\x2e\xf6\x6e\x20\x1e\x66\x33\xc7\x35\xba\
128
\x2a\x80\xb9\x5b\xc8\xb9\x1e\xfc\x22\x9f\xb3\xcf\xf2\xd9\xc4\x9d\
129
\x7c\x3e\x3b\xbc\x97\x4f\x06\x05\x94\x08\x6d\xa4\x16\xd0\xd8\x6b\
130
\x8e\x8d\x4d\xa8\xd7\x09\x10\x5e\x41\x7d\xcf\xe0\x57\xf9\xac\xe0\
131
\xad\x7c\x3e\x13\x80\x42\x9a\x97\xcc\x01\xde\xda\xe7\xbf\x7c\xb2\
132
\x4b\xa0\x06\xe2\xae\xf6\x80\x9e\x0d\x0a\x7d\x9b\x81\xb7\x35\xed\
133
\x2c\x6d\x44\x73\x4d\x1b\x8f\xb6\x60\x4f\x4e\x77\x42\x14\xf2\x7d\
134
\x97\x62\xb2\x24\xc2\x75\x17\xf8\x78\xe4\x83\xf8\x8a\x20\x0a\x49\
135
\x4b\x87\x24\x2e\x31\x78\x43\x9a\xe6\x31\x65\xce\xb1\xbe\xc2\x28\
136
\xf1\x3f\xcd\xe6\x33\xc4\xbb\xd9\x2c\x80\xba\xbe\x58\x98\x34\xc2\
137
\x62\x67\x24\xf0\x8a\x28\xed\xe7\xce\xa1\x1f\xf8\x72\xa8\xfa\x22\
138
\x92\x43\x0d\xbc\x87\xe3\x7e\xc3\xd7\x58\x6c\x9e\x99\xdf\x26\x72\
139
\x9c\x84\x1c\xca\xa4\x7e\x14\xbc\x52\x8a\x36\x89\x43\x9e\xa6\xad\
140
\x5c\xd4\x06\x15\xfa\xa4\xe7\xb4\x55\xcb\x25\x25\xae\x1c\xac\x80\
141
\xb3\x62\x7e\x02\x5a\x90\x12\xdd\x64\xcf\x49\x06\xc1\x55\x4a\x41\
142
\xe8\x22\x05\x13\x28\xf2\x23\x72\x42\x0a\x4d\x76\x21\x97\xb5\x40\
143
\x91\x9a\x23\x8e\x21\x72\x91\x7f\x74\x04\x33\x44\x91\xaf\x04\x88\
144
\x16\xbd\xe3\xc5\x8e\xa2\x80\xb2\x85\xc3\x46\xe6\x0b\x04\x3f\xf7\
145
\x15\xbf\x49\x21\x29\x58\xba\x3a\x1c\xae\xa9\x13\x3b\x48\x30\xc2\
146
\xee\xca\xca\xc5\xe0\xda\x55\x2e\x29\x39\x5a\x87\x5c\x61\xe0\xe0\
147
\x2a\xe3\xb5\x8f\x81\x4f\x5e\x10\xc3\xfb\x87\xe4\xf6\x14\xed\x91\
148
\x61\xe8\x23\x9f\xdc\x2e\xea\x9c\x2b\x08\x20\xd4\xd8\x5c\xdd\x02\
149
\xb9\x78\x38\x75\x8e\x3a\x9e\x3a\x8a\x95\xbb\x49\x77\x21\x2d\xdc\
150
\x97\x27\x90\xe1\x89\x80\x87\x70\xe2\x08\x35\xef\xa0\x2e\xa4\x14\
151
\x01\x4a\x9c\x74\x15\x50\x2e\x1e\x4c\x1d\x6e\x7b\x3c\x75\x3f\x90\
152
\x8a\x34\x8c\xe6\x1b\x5a\x51\x60\x5a\x16\x9f\x16\xf7\x2c\x71\x88\
153
\x1c\x60\xa8\x62\xf2\xbb\xa8\x73\x59\xe4\x5e\x83\x19\xfb\xa5\x3d\
154
\xc8\xc5\xa3\xa8\x6b\xf1\x26\xe3\x80\x00\x94\x7c\xff\x9a\xe0\xc5\
155
\x52\xa7\xcf\x89\x3d\x2a\xee\x02\x07\x96\x63\x01\x92\xa4\x6a\x05\
156
\x44\xea\x22\x4a\x7c\x14\x55\x2e\xdf\x83\x5c\x3c\x9c\x3a\xb8\xf1\
157
\xe3\xa9\x7b\x8d\x58\xe0\x8a\xae\x92\x39\xb9\x47\xc7\x9d\x93\xe1\
158
\x39\x90\xb9\x2b\x04\x74\x1d\xd4\xd1\x2b\x58\xc2\x1e\x17\x6b\xaf\
159
\x05\x9e\x92\xba\x84\x92\x0d\x62\x26\xdc\xca\x99\xab\x17\x72\xf0\
160
\xa9\x81\xaa\xc4\xc8\xf2\xa3\xa0\x93\x3a\x8a\x28\xed\xe9\x20\x93\
161
\x8b\x47\x51\xd7\xa5\xfc\x83\xe1\x05\x8e\xd2\xc8\x74\xf4\x0b\xba\
162
\x71\xbf\x90\xd4\xa1\x22\x3b\x5a\x68\xef\x45\xa7\xd4\x29\x17\xc6\
163
\x49\xae\x6e\x83\x5c\x3c\x82\x3a\x5c\x2a\xc7\x27\xc3\x23\xcf\x23\
164
\x14\x0e\x65\x86\xc7\x96\x83\x4f\x8b\x08\x79\x17\x5c\x44\x8a\x24\
165
\x8c\x8b\xc1\x6c\xd9\xca\x01\x2b\x44\xc7\x37\x1c\x29\x2b\xd5\xd7\
166
\xee\xe4\x98\x2f\xb2\x2c\x91\xf2\xbb\xa8\xc3\x35\x12\xfd\xe0\x4f\
167
\x18\x3b\x72\x7c\x32\x10\x1a\x4e\xa4\x4e\xfa\x4c\x8f\xee\xec\x5b\
168
\x80\x32\xf7\x8d\x83\x34\xdf\xb3\xba\x69\x09\xcc\x91\xad\x14\x32\
169
\xa8\x03\x66\x78\x2c\x75\x48\x4d\x82\x97\xc7\x36\x63\x4d\xa3\xee\
170
\x7d\xfe\xab\xef\x67\xb3\xff\x62\x5d\x40\x7c\xe3\x29\xfe\x3b\x02\
171
\x2c\x5b\x7f\x34\x1f\x2f\x43\xd2\x11\x3c\x45\xe0\x35\x82\x62\xfd\
172
\x7a\x03\xf7\x90\x91\x7e\x65\x7f\xae\x0b\xe3\xa5\x6e\xae\x8f\xb6\
173
\x4e\xd3\xa5\x4e\x14\x08\x06\x1c\x95\xc7\xff\x2e\xa2\x4c\x9f\x11\
174
\x04\x81\x77\x00\x61\xe0\x87\x69\x96\x25\xd7\xc8\xc9\x57\x59\xe6\
175
\x20\x7b\x5f\x26\xb4\xc4\x99\x3a\x75\x48\xbf\x76\x6a\x43\xae\xf7\
176
\xbe\xd6\xd8\xb6\x87\xb1\xd4\xa5\x94\x1c\x6f\xd8\x27\x52\xf7\x9b\
177
\x11\x38\x44\x85\xc6\x2c\xa5\x41\x1a\x05\xf3\x94\x87\x3a\x0c\x03\
178
\x7e\x4f\x79\x5a\x73\xcf\xd7\x35\x64\x55\xd1\xef\x70\x10\x5a\xd4\
179
\xa4\x4e\xaf\x51\x45\xe4\xd7\xf6\x47\xbb\x31\x96\xba\x00\x69\xe7\
180
\xfc\x27\x39\x31\x15\x53\xa5\x8e\x2d\x5d\x80\x0c\x24\xa6\xf9\x1f\
181
\xc1\x00\xac\x39\x14\x96\x6d\x95\xa9\x04\xbb\xc5\x3e\x04\xbe\xaf\
182
\x3d\xd7\x55\x09\xbe\x1f\xa6\x5b\x28\x7a\xb2\xde\x44\x3b\xb7\xa9\
183
\xb0\xa6\x9f\xc2\xa8\xd6\x9f\xcd\xaf\x76\x61\xbc\xc2\x22\xb1\x93\
184
\xe3\x93\x31\x8d\x3a\x10\x47\x91\x17\x2c\x69\x43\x3f\xb8\xb1\x5a\
185
\x7a\x71\xa0\x93\x40\x21\x91\x92\x3a\x1c\x80\xb6\xd4\xb9\xb1\xa6\
186
\x08\xc6\x4c\x59\xc3\x43\x11\x0a\x82\xb3\xe5\x3d\xb6\xfe\x62\x13\
187
\xd1\xec\x43\xe1\x92\x3a\x30\x96\xba\x6b\xd7\x3b\x3e\x24\x9e\x28\
188
\x75\xec\x0f\x3d\x0a\xdd\x40\x41\x2c\x56\xe4\x46\xbe\x87\x54\x18\
189
\xe2\x67\x81\xaa\xf4\xc3\x85\xba\xea\x20\x0c\xc8\x8f\x43\xf0\x6f\
190
\xab\x41\x9e\x61\xa0\x1a\x9c\x20\x9c\xdb\x98\x73\xfd\xc0\x1d\xed\
191
\xe5\x43\xa5\x6e\xad\x11\xf7\xc8\x89\xa9\x60\xe7\x08\x4d\x1b\x4a\
192
\x9d\x6d\xd1\xd3\x48\x7c\x9d\x84\x32\x9f\x36\x8a\x32\x0f\x36\x97\
193
\xa9\x60\x6d\xb3\xb7\xa9\x75\xa4\x56\x61\x79\xab\x00\x97\xba\x09\
194
\xf4\xd2\xdc\x16\xd1\x9b\x65\xa0\x00\x24\x72\x6d\x4e\x1d\x40\xf1\
195
\x3d\xb0\xde\xd5\x26\xc2\x02\x22\x57\xb1\xb8\xc0\x16\xc8\x89\xa9\
196
\x68\xa3\xae\x4b\x3d\x24\x80\x7b\x1d\x13\x2d\xb5\x8b\x1c\x84\x42\
197
\x47\x7b\x49\xbc\x08\x93\x38\x8e\x42\xc0\x94\x0b\x52\x63\x9b\xb1\
198
\x75\x11\xac\x58\xbf\xca\x05\xae\x63\x43\x6f\x56\x74\x15\xd9\xe8\
199
\xf4\x05\x52\x86\x3d\xea\xbe\xe5\x0a\x1e\xd2\xd7\x92\xf2\x3e\xea\
200
\x44\x32\x19\x1e\xa5\x2a\x46\x62\x2c\x1d\x3d\x83\xbb\x64\x4d\x50\
201
\x91\xf7\x49\x5a\xea\x44\x06\xf2\x00\xbb\x37\xc8\xcd\x28\xf5\x76\
202
\xf0\x0b\x21\xa5\x49\x8c\x42\x04\xb8\x03\x04\xce\x14\xc9\xb8\x09\
203
\x05\x43\x22\x80\x39\x33\x90\x5d\x9c\xaf\x03\x3f\x4d\xdf\x71\x5a\
204
\xff\xd3\x3d\x4a\xb2\x9f\xc3\x66\x5a\x65\x07\x85\x03\x71\xdf\x20\
205
\xea\x2a\xd8\xf8\x2b\xf2\xaf\x28\xd0\xab\xd1\xa2\xc7\x34\xdb\x0e\
206
\x71\x4b\x9d\x70\x47\xbe\x89\x9e\xfe\x61\xce\xd4\xf1\xbf\x33\xf8\
207
\x72\x26\x9d\x7c\x58\x58\x8a\x10\x1a\xdd\xe2\x7a\xba\xd1\x29\xed\
208
\x62\x7b\xcd\x24\x7c\xe6\xe0\xfa\x4f\x7c\x5f\xb8\x8c\x26\x75\x6c\
209
\xb9\x12\xee\x6b\x68\x2b\x92\x85\x6d\xc7\x1b\x49\x1d\x32\x3b\x7e\
210
\xae\xb7\x2b\xdc\xdd\xaf\x76\x94\x1d\x00\x6c\x0b\x02\x25\xe9\x87\
211
\x28\xa8\x33\xae\xe2\x50\x00\xf5\x89\x1c\x3f\x78\x05\xe3\x1e\x78\
212
\xb4\xf2\xe8\xc6\xfd\x23\x5b\xf1\x9f\xe5\xec\x54\x70\x51\xfe\x19\
213
\xa5\x2d\x7d\x13\x21\x2c\xba\x07\x4a\x59\xb7\xda\x72\x58\x2f\xd5\
214
\x41\x46\x71\x3a\x88\x3a\x9c\xcb\x11\xae\xfd\xcd\x96\xb8\xd7\x32\
215
\xf4\xe7\xd8\x10\x7b\x02\x37\x65\x21\xca\xb2\x07\x95\xee\x4a\x31\
216
\x15\xea\x48\xe1\x38\x3e\x38\xc6\x6e\xcd\xec\x58\xc1\x83\x70\xe7\
217
\x64\x01\x14\x0b\x76\x62\x7d\x45\xcb\x79\x82\x83\x2d\x03\x3c\x46\
218
\x83\x65\xdd\x73\x60\x03\x9a\xd4\x05\x94\x86\x8a\xbe\x67\x21\x09\
219
\xbe\x57\xb7\x6c\x93\x8d\xc5\x32\xed\x29\xa8\x0a\x2e\x88\xd7\x8b\
220
\x61\x52\xc7\xc2\x21\x57\xe1\x91\xb0\x4d\x99\x2b\xf7\x4d\x88\xc8\
221
\x92\xa3\x52\x0b\xc3\x1b\x60\xac\x49\x0b\xf0\x24\xe5\x6e\x40\x9d\
222
\xba\xe0\x9a\xb6\xaf\xb0\x17\x47\x06\xd6\xec\x33\x74\x86\x60\x88\
223
\x6e\xe0\xf1\xb6\x73\xb5\x73\xd4\x8e\xd2\xf9\x71\xc9\x73\x01\x18\
224
\x0e\x76\x03\xf8\x71\x44\x49\x0d\xea\x10\xf0\xa5\x38\x8a\xaa\xae\
225
\x51\xce\x14\xb5\x64\x70\xd5\xe0\xd3\x3d\x4f\x23\x97\x43\x19\xaf\
226
\xe7\x83\xa4\xae\xe2\x26\x90\xdf\x05\x9e\xd2\x90\x83\x6f\x29\xbd\
227
\x42\x7c\x2c\x90\x93\x9d\x58\xd3\x5b\x38\x02\xf1\x13\x0d\xa9\xf3\
228
\x03\x97\xfc\x48\x85\x21\xea\x01\xc8\x43\xe0\xdf\xe4\xc6\x06\xd2\
229
\x50\x76\xd7\x24\xad\x4b\xd0\x7f\xca\xf1\xd1\x0f\xb3\x18\x77\x6f\
230
\x52\x47\x3b\x07\x16\x82\xfb\x3b\x55\x18\x2c\x28\x40\x51\x0c\x69\
231
\x38\x63\x44\x83\xbc\x84\xbe\x85\xcc\x0c\xa2\xae\x8a\x25\xf1\xa8\
232
\x47\x5c\xab\xf4\x35\x6c\x9d\x55\x57\x8f\xa3\x74\x03\x5b\xeb\x16\
233
\xc8\xbd\x0c\xc0\x96\xe3\xe1\x87\x45\x0f\xb8\x5c\x20\x31\x87\xf9\
234
\x19\xc6\x1c\x71\x04\x04\x5e\x21\x94\xdc\x31\x73\xa9\x7c\xfd\x84\
235
\x40\xc9\xa3\x44\xa3\x0c\x30\x39\xa0\x89\xc7\x12\x17\xb6\x27\x87\
236
\x94\xa6\x40\x04\x55\x76\x55\x19\xf3\xa0\x64\xd1\xb6\x63\xbe\xc5\
237
\xc2\x81\xe6\x08\x8c\x61\xe7\xeb\x73\x60\xd3\x0f\x03\x2d\xa7\x3b\
238
\x51\x51\x57\x43\x1d\x4a\xc8\xad\xab\xcc\x5c\x4e\x9d\x5c\x59\x14\
239
\xf5\x0d\x6d\x33\xba\xc5\xf3\xa4\xb9\x6f\x3a\x6c\x7f\x94\xaf\x9f\
240
\x0a\xef\x66\x9f\x33\x38\x6d\x98\x3b\xee\x37\x84\x62\xae\xe3\xa8\
241
\x2c\x86\x23\xfa\xe4\x4b\xb8\x58\xc4\x8b\x6e\x3a\x47\xc1\xca\x41\
242
\x65\xfa\xfa\x0a\x41\x5b\xdc\xea\x8f\x51\x3f\xf6\xab\x06\xf6\x4e\
243
\x65\x9c\xa9\x5d\x57\x23\x38\x0d\xcd\xcd\x7b\x60\x9b\xaa\x25\xcc\
244
\xb4\xd4\x21\x31\x82\x90\x82\x3f\x70\xc7\x42\x27\x25\x2e\x9f\x32\
245
\x7e\x24\xa2\x60\x8e\x0d\x47\x85\xec\x11\x4f\x64\xe8\x2a\xf8\x4c\
246
\xab\x55\x9a\x86\x0b\x4a\x02\xd8\x94\x05\xf9\xc9\x02\x95\xb3\x90\
247
\xe2\x14\xe5\x31\x5a\x05\x98\x1d\x27\x5b\xc9\xae\x0b\x63\x15\x29\
248
\xc9\x4d\xea\x40\xdc\xb8\x62\xdd\xb2\x30\xdf\x03\x38\x8c\x67\xf0\
249
\xb6\x23\x59\xda\x01\xc8\xfd\x00\xa1\x0e\xac\x39\xf8\x32\x6b\x2c\
250
\x0b\x9d\x5c\x56\xfc\xd4\x66\x49\x8b\x80\xbe\xc1\xb5\xa6\x0b\xfe\
251
\x50\x74\x3f\x0d\xdf\x6d\x08\xd5\xbb\x85\xd3\x4c\x14\xe9\x20\xf1\
252
\x51\x22\x81\xe1\x05\x10\xf5\x2a\x0c\x09\xdb\x91\xa4\xd6\xd4\xb5\
253
\xbd\x36\x51\x42\x0b\x40\x78\x20\x5f\xe7\x06\x2f\x6e\x57\x2c\xdc\
254
\xa0\xf6\xb4\x1f\x84\x51\x28\xc2\xed\xcb\x13\xdb\x03\xbd\x0c\xf9\
255
\xb9\xfc\x26\x37\x34\x0a\x6b\x53\x20\x14\x12\xdc\x89\x1d\x60\xd8\
256
\x82\xf3\x7e\xe8\xc0\x4b\xac\x9d\x88\x8b\x65\xdc\xc3\x23\x8c\x4f\
257
\xa1\x2d\xe2\x0f\x98\x70\xc8\xce\x8e\xbc\xd0\x5f\x7f\x27\x3f\xdf\
258
\x49\x1d\xab\x03\xc2\x8b\x62\x40\x5e\x86\x10\x9a\xf4\x4a\xee\x57\
259
\x47\x62\x1a\x05\x4b\xb0\x9b\x11\x3d\x64\x0b\x0b\x85\xdb\x97\xee\
260
\x26\x20\x38\x59\xe1\x1d\x85\x3a\x90\x84\x33\xf8\x12\x17\xcc\x7e\
261
\x9d\xc1\x7b\x0c\x4f\x3b\x3e\x8c\x10\x78\x7b\xb4\x11\xb8\xef\xf0\
262
\x2f\xd2\xf4\x22\x75\x20\xde\xce\x82\xf4\x02\x04\x09\x63\x7b\xcd\
263
\x09\x52\x2c\x45\x37\x71\xfa\x1a\x91\x99\x5c\xc6\xd7\x45\xff\x46\
264
\xd4\xa6\x15\xf7\xe4\x5b\x61\x39\x12\x79\x06\x5b\x91\x3a\x7e\x92\
265
\x9c\xcc\x1a\xe7\x23\xcc\x15\xd4\x2d\xd9\xdf\xc9\xc3\x7c\xcf\x29\
266
\xd9\x23\xa8\x2c\xe2\xe2\x4f\xb3\xd7\xe4\x6d\x91\xe9\x5d\xd1\x0b\
267
\x14\x67\x51\x8c\xb3\x13\x66\xf6\x15\x96\x95\x75\x8e\xf8\x4a\xe0\
268
\x5e\x2b\x24\x1e\xed\x52\xb7\xe5\x00\xfe\x68\x94\xcc\x95\xb6\xce\
269
\xb8\x89\x9c\x3a\x29\x61\x01\x5a\x54\xfc\xf2\xcf\x27\xc9\x20\xda\
270
\x81\xf8\x98\x07\xa0\x74\x84\x66\xfb\x30\x82\xd4\x68\x21\x88\xbb\
271
\x6c\x9d\x6c\x9c\x0a\x74\x74\x77\xe4\x63\x60\xd4\x78\x35\x8e\xd5\
272
\x65\xd3\xa0\x83\xa3\xb3\xa5\x6e\x64\x30\x33\xa6\x58\x1c\x08\xcb\
273
\xa6\xc1\x73\xa3\x6e\x24\xc8\x8d\x87\x8d\x37\x7f\x8f\x1a\x84\x30\
274
\x76\xb2\xcb\x78\x76\xd4\x15\x4d\x46\xc3\x3c\x0c\x5c\xa5\x6c\xf5\
275
\xe2\x1e\x91\x34\xf4\xb5\xd6\x47\xf3\x2f\x2e\x75\xa6\xa6\x83\xbc\
276
\x11\xb2\xdd\x05\x77\xe7\xc8\x2e\xf0\x4c\xa9\x6b\x69\xae\xec\xc2\
277
\xcd\xa0\xaa\x7e\x76\x10\x9f\xcc\x1d\xda\xce\xfe\x26\x47\x9e\xad\
278
\xd4\x19\xee\x0e\x67\x22\xf0\x2a\x03\xab\x8a\x68\x6e\x8d\x9c\x02\
279
\xd5\xc8\x1f\xcb\x33\xa4\x8e\xa7\x07\x77\xc4\x5c\x6d\xf8\xc8\x4d\
280
\x82\x87\xc1\xf1\x30\x82\xe8\x4c\x76\x81\x27\xa3\xee\xd4\x37\xec\
281
\x00\xb2\xd2\xd0\xe4\x53\xc3\x47\x18\xd1\xd0\xf0\xbf\xd1\x91\xff\
282
\xcc\xa8\xe3\x36\x0a\x33\x8b\x7f\xce\xed\x57\xe6\xd0\x61\x0c\x9d\
283
\x8c\xf0\x7c\xa9\x33\x99\xd5\x5c\x76\x78\x7b\xe8\xf8\xac\xbc\x6c\
284
\xbd\xe3\xc3\x80\xe7\x4a\x9d\xe9\xee\x55\xbe\xd9\x66\x20\xd0\xa5\
285
\xb0\xdc\xed\x45\xe5\x6b\x7d\x78\xce\x0a\xeb\x50\x3d\x11\x83\xbb\
286
\x38\x10\xa5\xe0\x72\x84\xce\x03\x0b\xf7\x9c\xa9\xa3\xe6\xf0\x80\
287
\x81\x83\xdb\x52\x78\xcf\x01\x1d\x48\xcf\x95\xba\xb7\x7b\x55\x63\
288
\x98\xd6\xe6\x3e\xb0\x54\xb2\x43\xbe\x6d\x08\x6c\x1b\x9e\xb1\xd4\
289
\x89\x5b\x40\xba\x54\x48\x9b\x6d\xa9\xef\x47\xe0\x98\x7e\x9a\xc3\
290
\xdd\xbd\x5f\x88\xba\x60\xf8\x70\xc4\xa9\xb0\x3a\x87\x78\x78\xc5\
291
\x6d\xcd\x32\x70\x90\x76\xe6\xa3\x17\xb4\xe4\xe1\xb2\xb2\xd3\x83\
292
\x2f\x44\xdd\xf1\x63\xe0\x0f\xc2\x36\x44\xd2\x77\xf6\x97\xc4\xee\
293
\x59\xf9\x0b\xb8\x5f\xc6\xc5\x3f\x6e\xb4\xdf\x07\x51\x74\x60\xce\
294
\xbf\xc1\x17\xa2\xee\xf8\x31\xf0\x25\x2a\xed\xf6\x15\x48\x91\xf3\
295
\x89\x4a\x5a\x19\xe7\x9a\x71\x80\x0c\x4f\x9b\xf0\x50\x9c\x39\x65\
296
\xbb\xb6\xbc\xf6\x13\x0f\x6e\xb0\x9b\xc5\x46\x0b\x9e\x01\x75\xfb\
297
\x60\x96\x8c\x7c\xdd\x95\x05\xb7\xfd\x0e\xd8\x77\x3c\x9c\xfa\x3b\
298
\xef\xbc\xcb\xd6\x14\xcd\x7e\xab\xf7\x58\xfd\x1f\xff\xf1\x5f\x9a\
299
\xef\xcd\xb9\xff\x99\x37\x5a\xf1\x1c\x14\xb6\xad\x5d\x57\x4a\x5c\
300
\x16\x3c\x1f\xad\x4e\x3e\x54\xf7\x3f\xcd\x21\x38\x51\x8f\x5e\xdb\
301
\xcd\x12\x1f\x4d\x68\xb7\xe4\x6e\x9b\xd2\xbf\xb4\xe1\xb9\xda\x3a\
302
\x09\xcc\x8a\xb9\xe7\x1f\x29\xfb\x2b\x3e\xe6\x52\x93\x77\xb9\x9a\
303
\x07\x54\x9d\x52\xca\xa3\x1d\xe5\x84\xcb\xe3\x84\xec\x66\x07\x9e\
304
\x01\x75\x46\xc5\x1a\xc8\x29\xe3\x82\xdb\xa6\x75\xae\x28\x6d\x9a\
305
\x15\xf9\x71\xa6\x5a\xa7\xe3\x72\xeb\x39\x34\xbc\xb7\x55\xfe\x0b\
306
\x51\x77\xca\xa5\x12\xda\xb4\xaa\x28\x70\x5e\x3f\x8a\xef\x67\xae\
307
\x4b\x48\xe9\x8b\x50\x57\x1a\xd2\xe3\x72\x9c\x4d\x9e\xf0\xbb\x9e\
308
\x63\x1b\x5c\x7a\xf1\x85\xa8\x3b\xe5\x0d\x5b\xe6\x7a\x94\x6d\x6e\
309
\x88\xe8\xcc\xa7\x82\x14\xd5\xab\x5a\x00\x59\x57\xc5\x53\x7c\xc4\
310
\xfd\xc2\x41\xc5\xf3\xea\xad\x04\xe7\x48\x5d\x8b\xf2\x97\xc3\x04\
311
\xe9\xb5\x19\x6e\xea\x53\xd6\xd2\x52\xcc\x02\x78\x37\xfb\x9c\x56\
312
\xb8\x7f\x08\xe1\x80\x71\xe5\x3b\x6b\xf4\xfa\xba\x78\xdc\xba\x60\
313
\x9e\x17\x75\xf6\x2e\xbc\x22\x84\x54\x51\x6c\x53\x6d\x96\x12\x2d\
314
\xdc\x84\xc7\x24\xc9\x6e\x0d\x1f\x24\x69\xb5\xdb\xc0\x82\xc7\x91\
315
\xf0\x46\x81\x87\xd6\x66\x3b\x0e\x07\xa3\x73\x56\xd8\xc4\x98\x39\
316
\x6b\x73\x64\x81\x42\x13\xf8\x36\x27\x4f\x53\x67\x57\x08\x28\xff\
317
\xa5\x1c\x2f\x01\xda\x82\x21\x4b\xc3\x5a\x36\x1b\x23\x54\xce\x8b\
318
\x3a\xee\x5b\xe1\x8f\x06\x31\xd5\x9b\x43\x27\x29\xee\x30\x72\x39\
319
\xe4\x7a\xf2\x12\x47\x52\xdc\x4a\x8e\xf1\xa9\x23\x5b\xd9\xcb\xc3\
320
\x3b\xaa\x74\x9a\x9a\x56\x70\xa2\x1b\x7e\x0a\xf9\xc9\x57\x84\xcc\
321
\xb8\x4f\x38\x89\xb2\xc5\x88\x2d\x5d\xc5\xad\xee\x03\x09\xd9\xf6\
322
\x13\x9f\xb7\xcf\xa1\x89\xee\x82\x36\xd6\xa2\x3b\x2f\xea\x60\xda\
323
\x42\x17\xb5\xe6\xb4\x4e\x06\x2f\xc2\xbc\xd7\xba\xb4\x0e\xf5\x23\
324
\x12\x0f\xf2\xae\x3b\x03\x18\xbd\xf2\x80\xbf\xe1\xc1\x8b\xad\x30\
325
\xb6\xa1\xc4\x79\x51\x07\x98\x1b\x15\x11\x16\xaa\xfc\x69\x46\x65\
326
\xd0\x40\xab\xfe\xf5\xa2\x78\xd9\xb9\x5a\x53\xb2\xf1\x33\x55\x11\
327
\xe5\xb4\x6d\x18\xce\x8b\x3a\xae\xa3\x99\xe4\x57\x5d\xc8\xa5\x64\
328
\x8e\x87\x71\xd5\x05\xaa\x0e\xee\x85\xee\x2a\x87\xca\x4c\xb8\xa8\
329
\x23\xdd\xde\xe4\xd9\x10\x39\xe0\xbc\xa8\x63\x98\x3b\x69\xf6\x8b\
330
\xa2\x59\xf9\xad\x7d\x72\xf4\x3f\xda\xda\x06\x24\x82\x41\x76\xaf\
331
\xbb\x46\x71\x46\xb4\xa4\x6f\x02\xcf\x25\xcf\xef\x6e\x2c\x7e\x37\
332
\xa3\x3f\x54\xce\x9e\x17\x75\x78\xf4\x9f\xad\x90\x55\x44\xcd\x68\
333
\xd8\xfd\x2c\x6c\x46\x28\x75\xd0\x9a\x3b\xb7\xbb\x9c\xe7\x2d\xd1\
334
\xf5\x5b\x72\x95\xf1\x04\xdd\xe4\xd5\x6a\x31\x95\xba\x72\x85\xdf\
335
\x61\x38\xd1\xb3\x60\x01\x32\x51\x99\x49\x8a\x8c\x8d\x32\x03\xe4\
336
\x3e\xe4\xf9\x57\x3b\x3e\x05\x3c\xd3\x46\x76\x5a\x90\x9f\x53\x76\
337
\x48\x89\x84\x8c\x15\x88\x35\xbc\xad\xde\xa3\xe3\x86\x07\x6a\xfa\
... 이 차이점은 표시할 수 있는 최대 줄수를 초과해서 이 차이점은 잘렸습니다.

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)