├── .gitattributes ├── README.md ├── eisvogel_test ├── backgrounds │ ├── background1.pdf │ ├── background10.pdf │ ├── background11.pdf │ ├── background2.pdf │ ├── background3.pdf │ ├── background4.pdf │ ├── background5.pdf │ ├── background6.pdf │ ├── background7.pdf │ ├── background8.pdf │ └── background9.pdf ├── build.bat ├── document.md ├── document.pdf ├── document.tex ├── document2.tex ├── eisvogel.tex └── simple.bat ├── md ├── 00.0.0Python教程.md ├── 01.0.0Python简介.md ├── 02.0.0安装Python.md ├── 02.1.0Python解释器.md ├── 03.0.0第一个Python程序.md ├── 03.1.0使用文本编辑器.md ├── 03.2.0Python代码运行助手.md ├── 03.3.0输入和输出.md ├── 04.0.0Python基础.md ├── 04.1.0数据类型和变量.md ├── 04.2.0字符串和编码.md ├── 04.3.0使用list和tuple.md ├── 04.4.0条件判断.md ├── 04.5.0循环.md ├── 04.6.0使用dict和set.md ├── 05.0.0函数.md ├── 05.1.0调用函数.md ├── 05.2.0定义函数.md ├── 05.3.0函数的参数.md ├── 05.4.0递归函数.md ├── 06.0.0高级特性.md ├── 06.1.0切片.md ├── 06.2.0迭代.md ├── 06.3.0列表生成式.md ├── 06.4.0生成器.md ├── 06.5.0迭代器.md ├── 07.0.0函数式编程.md ├── 07.1.0高阶函数.md ├── 07.1.1mapreduce.md ├── 07.1.2filter.md ├── 07.1.3sorted.md ├── 07.2.0返回函数.md ├── 07.3.0匿名函数.md ├── 07.4.0装饰器.md ├── 07.5.0偏函数.md ├── 08.0.0模块.md ├── 08.1.0使用模块.md ├── 08.2.0安装第三方模块.md ├── 09.0.0面向对象编程.md ├── 09.1.0类和实例.md ├── 09.2.0访问限制.md ├── 09.3.0继承和多态.md ├── 09.4.0获取对象信息.md ├── 09.5.0实例属性和类属性.md ├── 10.0.0面向对象高级编程.md ├── 10.1.0使用__slots__.md ├── 10.2.0使用@property.md ├── 10.3.0多重继承.md ├── 10.4.0定制类.md ├── 10.5.0使用枚举类.md ├── 10.6.0使用元类.md ├── 11.0.0错误、调试和测试.md ├── 11.1.0错误处理.md ├── 11.2.0调试.md ├── 11.3.0单元测试.md ├── 11.4.0文档测试.md ├── 12.0.0IO编程.md ├── 12.1.0文件读写.md ├── 12.2.0StringIO和BytesIO.md ├── 12.3.0操作文件和目录.md ├── 12.4.0序列化.md ├── 13.0.0进程和线程.md ├── 13.1.0多进程.md ├── 13.2.0多线程.md ├── 13.3.0ThreadLocal.md ├── 13.4.0进程vs.线程.md ├── 13.5.0分布式进程.md ├── 14.0.0正则表达式.md ├── 15.0.0常用内建模块.md ├── 15.1.0datetime.md ├── 15.10.0XML.md ├── 15.11.0HTMLParser.md ├── 15.2.0collections.md ├── 15.3.0base64.md ├── 15.4.0struct.md ├── 15.5.0hashlib.md ├── 15.6.0hmac.md ├── 15.7.0itertools.md ├── 15.8.0contextlib.md ├── 15.9.0urllib.md ├── 16.0.0常用第三方模块.md ├── 16.1.0Pillow.md ├── 16.2.0requests.md ├── 16.3.0chardet.md ├── 16.4.0psutil.md ├── 17.0.0virtualenv.md ├── 18.0.0图形界面.md ├── 18.1.0海龟绘图.md ├── 19.0.0网络编程.md ├── 19.1.0TCPIP简介.md ├── 19.2.0TCP编程.md ├── 19.3.0UDP编程.md ├── 20.0.0电子邮件.md ├── 20.1.0SMTP发送邮件.md ├── 20.2.0POP3收取邮件.md ├── 21.0.0访问数据库.md ├── 21.1.0使用SQLite.md ├── 21.2.0使用MySQL.md ├── 21.3.0使用SQLAlchemy.md ├── 22.0.0Web开发.md ├── 22.1.0HTTP协议简介.md ├── 22.2.0HTML简介.md ├── 22.3.0WSGI接口.md ├── 22.4.0使用Web框架.md ├── 22.5.0使用模板.md ├── 23.0.0异步IO.md ├── 23.1.0协程.md ├── 23.2.0asyncio.md ├── 23.3.0asyncawait.md ├── 23.4.0aiohttp.md ├── 24.0.0使用MicroPython.md ├── 24.1.0搭建开发环境.md ├── 24.2.0控制小车.md ├── 24.3.0遥控小车.md ├── 24.4.0遥控转向.md ├── 25.0.0实战.md ├── 25.1.0Day1-搭建开发环境.md ├── 25.10.0Day10-用户注册和登录.md ├── 25.11.0Day11-编写日志创建页.md ├── 25.12.0Day12-编写日志列表页.md ├── 25.13.0Day13-提升开发效率.md ├── 25.14.0Day14-完成WebApp.md ├── 25.15.0Day15-部署WebApp.md ├── 25.16.0Day16-编写移动App.md ├── 25.2.0Day2-编写WebApp骨架.md ├── 25.3.0Day3-编写ORM.md ├── 25.4.0Day4-编写Model.md ├── 25.5.0Day5-编写Web框架.md ├── 25.6.0Day6-编写配置文件.md ├── 25.7.0Day7-编写MVC.md ├── 25.8.0Day8-构建前端.md ├── 25.9.0Day9-编写API.md ├── 26.0.0FAQ.md ├── 27.0.0期末总结.md └── fig │ ├── 1008802356788736.png │ ├── 1008802515054144.png │ ├── 1017024373322432l.png │ ├── 1017032122300544l.png │ ├── 1018496437713568l.png │ ├── 1019401123918240l.png │ ├── 1019633050057984l.png │ ├── 1019633079028160l.png │ ├── 1048401552601344l.png │ ├── 1050933742009056l.png │ ├── 1183096336546240l.png │ ├── 1183103158580480l.png │ ├── 1183105155068736l.png │ ├── 1249598058265600l.png │ ├── 1249600178485568l.png │ ├── 1249600522419392l.png │ ├── 12831079132037780.png │ ├── 12903050704323210.png │ ├── 1311543585144897l.png │ ├── 1342562604417090l.png │ ├── 1346188160794690l.png │ ├── 1346189421183041l.png │ ├── 1346190218100802l.png │ ├── 1346267955331105l.png │ ├── 1346268110520386l.png │ ├── 1346290294194241l.png │ ├── 1346290325651521l.png │ ├── 1346303361548354l.png │ ├── 1346304282198081l.png │ ├── 1346727531511874l.png │ ├── 9212153960043840.png │ ├── 9229153429258240.png │ ├── 9230247568328960.png │ ├── 9230254446989120.png │ ├── 9236263761773440.png │ ├── 9237918782554560.png │ ├── 9237920586134400.png │ ├── 9237921916377600.png │ ├── 9239237591896000.png │ ├── 9239237870188160.png │ ├── 9239304719270080.png │ ├── 9239735167876800.png │ ├── 9239736475158720.png │ ├── 9240168310386880.png │ ├── 9288179064464320.png │ ├── 9466582752136320.png │ ├── 9466583066904000.png │ ├── 9466584239922880.png │ ├── 9466587096437760.png │ ├── 949444125467040.png │ ├── 950413532592512.png │ ├── 950413553562752.png │ ├── 950413570828960.png │ ├── 950415476737952.png │ ├── 950415873256992.png │ ├── 950569639986880.png │ ├── 950571217609344.png │ ├── 950572257640320.png │ ├── 950751840957632.png │ ├── 950751878708448.png │ ├── 950751913543456.png │ ├── 950751959286720.png │ ├── 951373547960800.png │ ├── 951373657012736.png │ ├── 951373763967808.png │ ├── 951373786253056.png │ ├── 951383573211136.png │ ├── 951385556253728.png │ ├── 951386163120736.png │ ├── 954926361167104.png │ ├── 954926929668576.png │ ├── 954926987474240.png │ ├── 954927046197152.png │ ├── 955624199250624.png │ ├── 955626563299584.png │ ├── 955712165379744.png │ ├── 955719702776576.png │ ├── 956056345770752.png │ ├── 956056362546592.png │ ├── 956084297542656.png │ ├── 956187757507296.png │ ├── 956196693474432.png │ ├── 956198702546240.png │ ├── 956198878703904.png │ ├── 966760155050624.png │ ├── 966760380198752.png │ ├── 967446760519840.png │ ├── 967453175707264.png │ ├── 967455607327072.png │ ├── 967464310443456.png │ ├── 967488004941504.png │ ├── 967965753208928.png │ ├── 972515044819040.png │ ├── 972676918012640.png │ └── 972677353581536.png ├── md2tex.py ├── md_download.py └── tex ├── 00.0.0Python教程.tex ├── 01.0.0Python简介.tex ├── 02.0.0安装Python.tex ├── 02.1.0Python解释器.tex ├── 03.0.0第一个Python程序.tex ├── 03.1.0使用文本编辑器.tex ├── 03.2.0Python代码运行助手.tex ├── 03.3.0输入和输出.tex ├── 04.0.0Python基础.tex ├── 04.1.0数据类型和变量.tex ├── 04.2.0字符串和编码.tex ├── 04.3.0使用list和tuple.tex ├── 04.4.0条件判断.tex ├── 04.5.0循环.tex ├── 04.6.0使用dict和set.tex ├── 05.0.0函数.tex ├── 05.1.0调用函数.tex ├── 05.2.0定义函数.tex ├── 05.3.0函数的参数.tex ├── 05.4.0递归函数.tex ├── 06.0.0高级特性.tex ├── 06.1.0切片.tex ├── 06.2.0迭代.tex ├── 06.3.0列表生成式.tex ├── 06.4.0生成器.tex ├── 06.5.0迭代器.tex ├── 07.0.0函数式编程.tex ├── 07.1.0高阶函数.tex ├── 07.1.1mapreduce.tex ├── 07.1.2filter.tex ├── 07.1.3sorted.tex ├── 07.2.0返回函数.tex ├── 07.3.0匿名函数.tex ├── 07.4.0装饰器.tex ├── 07.5.0偏函数.tex ├── 08.0.0模块.tex ├── 08.1.0使用模块.tex ├── 08.2.0安装第三方模块.tex ├── 09.0.0面向对象编程.tex ├── 09.1.0类和实例.tex ├── 09.2.0访问限制.tex ├── 09.3.0继承和多态.tex ├── 09.4.0获取对象信息.tex ├── 09.5.0实例属性和类属性.tex ├── 10.0.0面向对象高级编程.tex ├── 10.1.0使用__slots__.tex ├── 10.2.0使用@property.tex ├── 10.3.0多重继承.tex ├── 10.4.0定制类.tex ├── 10.5.0使用枚举类.tex ├── 10.6.0使用元类.tex ├── 11.0.0错误、调试和测试.tex ├── 11.1.0错误处理.tex ├── 11.2.0调试.tex ├── 11.3.0单元测试.tex ├── 11.4.0文档测试.tex ├── 12.0.0IO编程.tex ├── 12.1.0文件读写.tex ├── 12.2.0StringIO和BytesIO.tex ├── 12.3.0操作文件和目录.tex ├── 12.4.0序列化.tex ├── 13.0.0进程和线程.tex ├── 13.1.0多进程.tex ├── 13.2.0多线程.tex ├── 13.3.0ThreadLocal.tex ├── 13.4.0进程vs.线程.tex ├── 13.5.0分布式进程.tex ├── 14.0.0正则表达式.tex ├── 15.0.0常用内建模块.tex ├── 15.1.0datetime.tex ├── 15.10.0XML.tex ├── 15.11.0HTMLParser.tex ├── 15.2.0collections.tex ├── 15.3.0base64.tex ├── 15.4.0struct.tex ├── 15.5.0hashlib.tex ├── 15.6.0hmac.tex ├── 15.7.0itertools.tex ├── 15.8.0contextlib.tex ├── 15.9.0urllib.tex ├── 16.0.0常用第三方模块.tex ├── 16.1.0Pillow.tex ├── 16.2.0requests.tex ├── 16.3.0chardet.tex ├── 16.4.0psutil.tex ├── 17.0.0virtualenv.tex ├── 18.0.0图形界面.tex ├── 18.1.0海龟绘图.tex ├── 19.0.0网络编程.tex ├── 19.1.0TCPIP简介.tex ├── 19.2.0TCP编程.tex ├── 19.3.0UDP编程.tex ├── 20.0.0电子邮件.tex ├── 20.1.0SMTP发送邮件.tex ├── 20.2.0POP3收取邮件.tex ├── 21.0.0访问数据库.tex ├── 21.1.0使用SQLite.tex ├── 21.2.0使用MySQL.tex ├── 21.3.0使用SQLAlchemy.tex ├── 22.0.0Web开发.tex ├── 22.1.0HTTP协议简介.tex ├── 22.2.0HTML简介.tex ├── 22.3.0WSGI接口.tex ├── 22.4.0使用Web框架.tex ├── 22.5.0使用模板.tex ├── 23.0.0异步IO.tex ├── 23.1.0协程.tex ├── 23.2.0asyncio.tex ├── 23.3.0asyncawait.tex ├── 23.4.0aiohttp.tex ├── 24.0.0使用MicroPython.tex ├── 24.1.0搭建开发环境.tex ├── 24.2.0控制小车.tex ├── 24.3.0遥控小车.tex ├── 24.4.0遥控转向.tex ├── 25.0.0实战.tex ├── 25.1.0Day1-搭建开发环境.tex ├── 25.10.0Day10-用户注册和登录.tex ├── 25.11.0Day11-编写日志创建页.tex ├── 25.12.0Day12-编写日志列表页.tex ├── 25.13.0Day13-提升开发效率.tex ├── 25.14.0Day14-完成WebApp.tex ├── 25.15.0Day15-部署WebApp.tex ├── 25.16.0Day16-编写移动App.tex ├── 25.2.0Day2-编写WebApp骨架.tex ├── 25.3.0Day3-编写ORM.tex ├── 25.4.0Day4-编写Model.tex ├── 25.5.0Day5-编写Web框架.tex ├── 25.6.0Day6-编写配置文件.tex ├── 25.7.0Day7-编写MVC.tex ├── 25.8.0Day8-构建前端.tex ├── 25.9.0Day9-编写API.tex ├── 26.0.0FAQ.tex ├── 27.0.0期末总结.tex ├── _minted-gen ├── 001CB73750914C3F84175E24F4F3AE3726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 00265BBC846F7C41B74C4A0BAF2EEE3D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0058089E75423EE45558AE05BFE9723B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 00677DA0A330B9DA91EA860B838C961E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0068FAAB289FF9A5764B6080D749328126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 00B642D3AD9C2507AB6340A453D189C826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 00F41301C3827132FB10BFE60CDD1EA326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0150CB656F6B9A63AA71308B0C91CAFA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 017692CE296EF23753E99F7DA573408326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0181F2CD79E7544EC4147944FA8FF40A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 01DA89BDC574323BB6A01D3FCBF24CB326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 01E230A658EF8D0003AD131DE215665826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 020E1EC524ED8525B7F1DDA2599E1F9726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 025857076B6DFD7735A052F9CF4C60DC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 029F5C7F950A9DAA70D9592B7818AFCD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 02C86357251CB3C2D33605DF75830C8326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 031877C8BC011B8BEC128D05B65DDD1726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 034FE0BE47E04487F0F1BD59A200ED9126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 035B9BB1E9777C312AC32C732202E2DC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0389609861EBDC617891BD5D98C48F9C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 039F85498760B81CC555A731E0211FA826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 03D19DBA2007D7A7041E9454E786F0F926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 044102C62E1DF564AF1938483D4AC0CE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0469E1C57DBBC8F2C698F30B78D0200B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0488A58C1938A81E40CB834BE4099BB026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 04B683A48E3BF37CC55A499E823EF74026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 04E4B57CAE8C9ABE16AF4BC882F88B5426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 050FCE5AF8EE76D6C6104066A4FB2CDF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 05468464884F9413BA15AAB1F7D63A3026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0557C745AB4EC38A28CD21478A4585AB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 059D02FA04AF41CC407DE32FC348C19226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 05C139401DDCEBF379685519E6C507A826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 05D94A8AC2D67579A4A484803F2CA9A326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 061E8F3A91CA864DB8AAA8F606F1CD5E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 064F66D902B4C33FA894B66B4137289326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 06510F70080A80B8BF3F21A6381EC05026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0669EDA2A6AD9BA24247DDF9433F8B8426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 06A1C8DF364F96C2B4B75A8E572B400826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 06B9A1F5DA0ED6FF37B9EF325643C25226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 06F5F2194B5FAD391D2AB5558914DFF526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 073977076880EA7896EFD53436272D0626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 078E05BA101ECEE8B4239E53B540E8CF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 07954590F13532111EA39544BCDF2DEC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 07BB689681B740196302A7F8A685241D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 07E2540D9618F0DFCA7855BB6EBE922926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 083E7C61F66C8F9BB3BB15672C78D75326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0856DE24A0CF19A9A1C6B8D59FB7343126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0885FFF7A6B15A1EBC952769006D4EF726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 08A53B747B18A6D8D7034626A1D7539B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 08F02E4E3169AC699B4B6B06452137CE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 09234F646EE236E79DA07A995F77FA9A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0999C80E88DE1C86BFA56B245E39924026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 09A405713041220591D59D3F5180E99326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 09AE425A971365AE5637B8AEEF0C5BC926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 09CFCDC828D9CB63E6C6E654C6513B0A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0A2C6C007CE704A09B10DD1D4190745826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0A7AD322F99BD9D5BCCB0239E6B9B40126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0A8A325D8C92200F507498DAAD7432C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0AC3B980E6EAEA9DF6CA81C1CB14075126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0AF9D0A08322A9D34CBF9FF766C7867E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0B0C055171662B8276CF81195E32610226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0BAB18CA8476D5DC189BA2EFB1D3770E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0BAC8288F3344CDAFAF58020213D5A9626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0C0036C6C9C488D3AA29C71D2B3DEC9026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0C324BB8232E1BEDF4A643059A7C604E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0C4BB38E65CF3C684AF3DA950E4A22EF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0C8161FF7D771524FD8DBA2F9545B49B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0C995B826BFE0B1BAEBE5B7AA6BE825326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0CFBFF5C00210078BAEAA7EE3D5FD02326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0D100B7A3CB64CF0124F2FB26EB7068926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0DA50C06F611902E403371996E16112F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0DE3B204155059E0DF2576505246BBDB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0E02DAF92E741E34CB3B8E1662A9407226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0E1370DDBA66FB9D4C1544ACB9B13E9926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0E3E5AB4323EF5AB1DA838B3DBD648BE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0EBD4E11ECEB83C4CAB654D9336592FA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0EFB55B3A324D27E46BA7829D26878F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0F0FC53E3388B20B8B8F69FBBF9BAC1E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0FC4911699AE5B29148C55095AC84BC226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0FDCB99EF1B844AE674E8E7BA220BADF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 0FF4E8FBFA4E9A516AECD31C5DF174E526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1065427103FDE53343A5F653F29C632026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 10BEABDEA3E04645968E75CEBA95359826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 10DC634AA03CA4D7E57B1B99FE5CBB2226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 10DEDB5C19879CC8DFFFB1D1A5798FA326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 11CE37457B1A5E1E52D00F3C26F8E86D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 11EC2D17C9686960D6570B35332DC0B526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 123D2938E06342935F6A014F4D376A4D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 123F896FC5DF1D707127E0AF3560BF7526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 127AC10A61B76FE7C321FDB097BC9AB126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 12A6BC52BA08D86AED60AC90F108EF8E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 12E33055869950675F887B27B23FF52326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 12E46D2BC467AAA25AA49CDBE12C1FD226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 13051A7C01C6FAAD33C33BDCA7CA211B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 133EE1DB611A6CAF988DF53DD328808126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 13C918F0B52D3AD25E9AE16669A3434526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1410E4543636D1E2AFC3D4C91231C67626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1430D10711F8B07E57947936CF595A3A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 14655EC5336C00776D12565BAC01EDF626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 150C9319574CF7832CA2B4F33F82CF8726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1527E92443984102AC45FF9ADD92555326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1529C7324547CE7D6B937E29AF96FB7826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1594CF6C27116923EE70B62CD8470E0F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 15CA84B25F239E460CDCB73ED2516CBF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 15DE2DD3A76DE3510C5C85F4BF20B57926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 15DED7292F549C47E0F5370053AE829726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1639ACBBEF9CE7633004324D9D08C0A326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 167394685C1BECE5020803FEEC62E49D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 168F6593144013EE0F4584E065BB3C5E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 16EA140E0390EB18C8D9ED2F4211533426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1777FCBBF00ED3EF966DFBDCCE7273B226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1826490315EB6A833BBBE4FB29AF14C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 18266ED1923FB2785E0530915974DA8026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 183E0F2A1467988EE52E7FD0534ADACA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1981A881907CFD9495CF353BB76C6B0426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 19901979C2DBF8D582456EDF57F7B0DE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1993C6DF9F5286F4AE6D0CA72CFB527226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 19BFACB3237D7E38D30B6FC859BB9BA326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 19D0E605F4C8551B826D693D47F81F8526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 19E36D6B52619DE240893E1AEF39F5D626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 19E8CAD86A70239EE7F404570A56AF4426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 19F00231FA4B55511A3C244D9A14E6CF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A0A4FDDF92CF6F793E8BD9F31DB7F9226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A0A72B28EE90FAAA36517433DAECF0F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A139B799FC4FB790AC3953BA6B7F25726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A31D1C1877508672C5C37D8F01EC11526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A3A058F0D3CEC09BD9DA32382AA22ED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A4C306469899C4CEBFE94F18456E24426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A5C21FA5A9019E12F5D7C3E2AADB61826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A855AF276382A618FBF20C016B0506026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1A8F85D01BFF1DF2736D8D6BE13C8D3426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1AFE42FD44BDE3AD8DCCDB4EB53A9D0026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1B2B748E9C50A163FC87DC68934B487926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1C2EDA8847726303D630B034CF4867B526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1C85A52741DB3D7CF9A167607B1C872026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1CF54F864414AA6782B1284818281D8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1D4A303D769108929DD7412C8E1755D126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1D6947CA1139F06924D92C1F3EA104A526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1DF43603764E10FD74A7C7E3EF3FE03226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1DF5CE4A49BD5C3E01788F179845912B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1E2FF2B678FFB85480B6560A1CE76B2A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1E4A82A649E9E397517330C2BE53D7DF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1E9C69DA504A10B85476924B3C23FE9526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1EF21617481A94486853873B2CBC71A5246394EAE22F2FE44064E7291435A58C.pygtex ├── 1EF21617481A94486853873B2CBC71A526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1EF3885EEBA0616ED5CF4BB281155ACE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1F4F8B48B9755B6D8D55B3DC0191122826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1F7282238EB2EAB82621B3FDED4A882226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 1F746BCAE22D342DFD990981A1F3B0F826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2064A032D405D9088AC08B852A5F69FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 20A3FB0BF9666DAC811957CFBA36C75726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 20F5BC50E6FD7E3D60AB24621F89BAA226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 215A36660D3305B68C7142FDD2EF067526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 21931F682F32C0F4196730DDD6FAB7C526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 21DB645B16DFD2DC4A56F132699E0CA226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 22097AFA19CE23FE22796B2DDEAF4E5A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 224343C957B6D40255536D63EF2DDDDC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2250A10F137A9059FDE5DD8D07ADC5E726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 22E756C7CD540F0FCF6DAE1DCB72763026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2326F56AD26429C91C6073D02DA7807326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 238FDCC7E64B74548E97068A6B05A02C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2390EB4C2721D4CEC78069ADEF262B2326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2472936F9CED4ED67E03629ACAAC56A926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2482820ECC0E95A99390F858B3EE1CE926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 24FA1D93C4E570146606005C21D41A5326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 25E916F07769BCB6C9786BF939326BF626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 25F613B8A09D593EAF75366F7CBE1E6326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 260599670BC928472169FEDC6C7D5F1C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 26333462F5D1C3C41A47D23421B01B1126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 26606660A0E4EFDF9ADC701DD9C5D8C926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 266288DB436C8942806A314E369C869626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2708CEB5790EFC5D8C987EC65E8D382C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 270AC418FBA195555E64352510D09E0E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 276DC3F1AD952B90B6867A0213B8F78026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 27DFA782E872F8E5569A9DF0304D02B626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 27F6606D1633AC9A9F04861072138CF926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 27FE979940A31EF50B1FE69D0C08FE2226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2802326F613A7A855113D8994878E52A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 28342B9805203A081C9CB8DBB0A2978326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 288D9A9EE58822AC18801052A4909CAA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2893CA3E2E6FFC598B19064EF9A039F926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 28970137FF9A56FD66C5D1484367D80126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2899A1D8DCAF2C0D191394072A68575826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 28A2FE0543B210070B03C0B67089198D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2988AA0824BABEAC21C8DF21B1588EDD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 29E777BD10B20975649B281B87E85FB326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2AABCF816DABD1ACF51F7A6CEF03AA0326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2AEBE9C86B4EBD98F488A15B5A68A44426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2AFD698635BA4106124735820C03562226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2B23B456EBB90188DD994297745ED61826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2B95E8704B9DBF165012B5690497254426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2BA74FF29FBD6E09269803B6E634924426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2BB7CAA25F5B798240A21CF117CB007F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2BB83E4A428F2D68ECCB4C2D989E028326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2BC1744A6374BFE76B915E0EE471DAAD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2BDC642A392797C012C91E82CDDDCF8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2C7C77DD324DD3C0E66D11EB2D69008B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2D21DEA3795F003A91DF27EBDBD37AEC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2D7324A98B6063C952887A451A54F31426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2D83ACAF106B15ABA98D3B281FDA290326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2DF91F621CB7B10F81B5833B1B4D845026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2E862FB67A2D9318F353A07D9DD2925626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2E8A74C4F617095768FCD28AAFCB35E226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2F13CF3FDCF8B0FEC0F04246D02D3BA626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2FDD3E9CE763E7A1A848C54C8DB0097026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 2FF6F231A0D360F9998D02D9AC2B599126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 30B194D861B5AE6FE45E2947E45EF1FD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 30B3A788F19451C48620F331D30D03D126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 314459D92FC245AB6C22D04C8808FE0426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 31586B085CE1ED2993C12AFB0186409126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 31680DE437178D2D79288376CCA8B42E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 318775081E8CB7BA717158086C41C4E826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 31A761715A8EB16F8FFBE2165070B39326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 320905C637FF78018DA5A8BDC6D9375126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 32DB9DFBEF90BB384D486B0FC5101FDA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 32E3D973917D5C6748643147BFDF090D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 32F9D7D6C12F56C4760A52B1181DE72E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 33047BC4DD3180B0003C67AED48759F426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 33895A2A1FA9869C295BE7643086DF8B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 338962525571C999F29DA8E28AE5B15D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 34124D1C554F96AB6F81EED88DE92B8526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3418AE8FB8366345E5341FAA13B6336926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 345B93878A57BFE407BAAF84ABB6A37226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3463DD9473350FCB5411CAE5C1835F2126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 34A76C2C935F831BA42844E77C9B125926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 34ABB8ACD6E7C939290910E2999D735C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 34ACD0C1650A369BC523FC3E7211E46F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3517BD767BAB40A4E3175A769F33D80A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 354A506E67A6D3F14E9C3E44E8A576E326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 35898D33D626827E52A21B12842E187726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 35B4213F35965D0CDB081FDDEED45CD026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 35B6370375F07F61A07243513E51184926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 35BDE018100A214BA9A47718A0B6414826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 35E8D41BC2CB8F3BB2AC9553D0C1F07726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3608883EBA9EEDB4FFFCDC7AC899578426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3680286B4A807419A680C9727DC3AFAB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 368479F9844BE396A97E3CA15657E29D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 36ACBAE4B79057953FBC9182E7E5F42626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 375C6477A4D6E2E632F893B59F13DE4A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3892F3F184B137CD11447589899DBD0626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 38E92CEB359D071CF0D467B1467B987226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 393ACA6219D793B90335230217E594F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 393F555E77D86CA209117B3A8E01E5F826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 39550D47F06BB23D39E6BB330C2CD38726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3967E85EF5A8F51E8599BBE1EC0AF49F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3970D4BB224CF1FAD9F7A068B601C50D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 39732838EC7850150531682F0FAEC82A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3A01914C2DBC4111E2F360330694C49226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3A1480CB754C22F0B2BD2100743F60B626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3AE0122F12A81D1B4FAC93830E67BBF126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3AE29ACA61476EE0A722EDC05EE58F4126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3AE5F9D6ABA6DDAAE22F301C071465A626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3B3FF3354A09B731B878EB919A4C893726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3B4ECFCF0FFDAD56B84A35D19AAF36D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3BAAAFC696D241787CF672E8172DD8AE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3BC95236454243A454EF96F9B1E7E8D926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3C1069B0694CDE6677F91A549BFC1E9026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3C1B2C55FAED38C182347A64231CC65B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3CDD4617CC319DE18BAFA6232A2EC4CD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3D0B58E380E21BE3A3025FE88194942826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3D952C5518B4541F8438EECE82AB684D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3DC3D32FCBC6FC7F2B03698D3BA0A01F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3DE0F423C82650C1FB00E0EA7625D1D226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3E6FE55E3C8BB8E6672D70E8A0145B1626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3EBB9AA34FC0243A3CC15B18A4CC388826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3EC439CEC2441BF76897F82B5764E16026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3EE2659990C07BCBA862DB007BB421A526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3F498438EEFD191CA6068365F5842FF126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3F5A94CC224484C111CDE1CDE767E7EE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3F5E18A1D2AA25EB5FB05292D04161A726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3F746CB310964AF4B88713C8EB4ADA1126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 3FEAC01D00CCF219CA457946222AAD2C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 40CBC694948874AF1535A071C2463D2726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 418D9936EF67655DE707A55C11859FBD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 41DE3F0784811D74D19C744219164F7F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 425BF6A8251D97345CB1197EAEB163C226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 426F051EE0D4FEAA538CAB622AD130BF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 42799EA83B701AC622443F9508573AC026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 42BB785175A757655F8576E0D79D822126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 42C3D9E0536EDED7EBA5958A760AC81726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 434289D742D8A7BEA6FF1D7BFE9C2AFE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4348EA103B2889CC7EDDCE4975CFF0C226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4399ACFB44814E09D15FC0AFBBC464C726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 447F5C4F9F4BE75541DD129271E80DAA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 449D38D4B3247FD659C36D2AFE6E023226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 44EEF45DA0BFE588D994F85CA3F901AE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4511F2CDF7C2B5C60AE2EC8CB3CC2AC426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 45711CA8E6EA0DA32191FBBB6DF0160526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4605C0710C05F7E4458F55F09A4E718926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 463DDC19CEDDE8C52E489505E325845126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 471940410896B4973E626872B162C4FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 47A2C160BC4916ECDBB060B84CCBED9126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 47A32BAC3CEA76172C49A483BEEF497626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4809B0A397869246B578BA25C4ABB8FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 482EA939E20142693C65665E361EFEC126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 49239C951AD1F1AA146E62D077D54CD326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 492555B16BE665D644E3E6EF1D24271526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4926F9382184B37F4831DD77221C269226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4952EF0471FEA59724B03640A6DEE06D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 49B1FF6647693C8D72C36DD25964189E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4A265489A43995713B70CE047C0899DE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4A7A8E9C64F85D014374D20B2CBE3C6F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4A7AD30F26BDDC57F0F571DC30C0E8BB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4A83E1F34CD603C080C0361E0D8D940A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4A8EE6F94ACFFE7B0659529634ED3AE726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4BA5DB83F61E80F7393E3661B29EB0B126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4BAB4E0E0CA7233D77D0F972B44B221026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4BC72B64ACBC097A1799402257F1D58226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4C83410AEFA0A886744BC0DDDBF0338826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4CE1E3585F67C64C01311A66F2D1B47926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4CECCD3F2F5A913F9354047E3199835726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4D4F4A3CBC42ADE8A71ECFC8FC306A7026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4D5E59E39723BDDB3251AA7D40ED920626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4D8AC961B55F8321E0B8E05F9858055526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4D938C734D41C001AC6E209AFA598DBF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4DB355E64EC69354DD9EFF54F71B43C726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4DBAAADFD936C26D6F6A97784ECC611726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4DDFF39D45D2BA62C103892669FF5EC126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4E62F3EE4C109A94AFCAC1B25289A0F426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4E97C68BBF968A8D485DC361E816530526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4F0225B333FB7E1E91F6459793466EAD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4F141F509AD1A9FC6453BD2DD65603DC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 4F1A6CD0862D2F64652E81F64468BC1A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 500098B6E1734E546DC6FEC8F8D8208226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5012F3252B28D8EE286475CA50CE316726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 50266BB2597C3471866FA3DE357B0F7426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 50BAB01B7F42D8C0052FEDD35AE2F2DA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 50FF4D7B2DDB0E8F96DA54A2669F96A226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 512E24EE51FE78BCFA9734A3607216F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5195BA63D04F918A33C255B7DCDE4BEB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 519E2F35727CB9D63E711E74C0E2951126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 51A90B8582BA14E485A5A32A17F6644226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 51B5EDBF008942CF2F79DE17B949679126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 51ECB4C0A3193AD649085560B6E385B426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 51ECBF17E4364EB6D44AEF6D2A6BEA0826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 51ECD3C91AAB1953E1E13636FC3D68BE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 520B919CDE958D98A30A8EEFBE1DA25326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5237961A9369BB9EE5CA7B62138CEE3926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 524B65E48361C225691B71C7FC53645D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 528F0C0247BFB3967CAA8825040D33F826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 52CACAE3EDE6D6A4C41D3FD7AC03F8B726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 530EB4DD51F54462042D1E507B0532C226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5336E0795F86C47BB0ADADDFE6B92D3726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 53B5142D2019101D804DD79B53D4AAE026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 542DB2F1410496D7AEF0A1360091084426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 547027297B53D0220A4B19A8C250B9C426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 54B16475A258237DAE20055A2C29701C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 54F7C248BFB20BCB9B476037F94EA9E426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 553CD691D1A15BAD355475A2A3CCFB5C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 55559FDC7C2710B9D4AF5D02F924C4BD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 55817A0E725E43C6097EA164CBEFE35126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 55E273C5999D20AF2AAB604CC6E0CC3F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 55FC2D0E96448E550A7E03EE07B27CA626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5619C4D8A99C2095E79FE4148BDC44EC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 569BF39254ECAE63112E34A46AEC855326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 57172818C6BF16DCEF2B51D6CD428B0B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 571E0C35F0C588FB78B90FE4175427B026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5839F1A8DE334B3E7C80F6422799B20E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5850279E04DD97E91FE33FF63B2533B026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5886163EE5E3F8B5D52D03DAE826D0F426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 58FAFAB1624DF7062B50758F8FC733E626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5990BC8065CF634994C78DDD76C218B826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 59DD46DC042ED1DD9C013BD340C8F22926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 59F140C29E292ABD6C35AC81A44FBC6726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5A7963E00D5B9040D5667381E2E1CB4B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5ABFE8E807CD8E38F8A353F89AF9C30D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5B239DCA1E30F5B4CDBEDF4B622C051B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5B30061271B2B7F9EA7393DA00F9105426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5B6191A9681FC1331461CF27D985A15A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5B79E751AB94350DABCEA4A636E8ADB426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5B7B818205B935509B41B1C6D0F9563A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5B932E312DF4166C32BC5F7A52F9CCEF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5BB883B089606647BB6D8602CAE85CAE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5C195E064B5B646DB2EDC7A941BA327326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5C30BFC7649F79AC0737CC3DFBD2525A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5C3AB7E553B274D272EE3D7CC13BEE2226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5C8CD54E59B48EE545CCCA36FD1C359A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5CD745C1EFD89583291270823275201F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5CEB0C11BACBCBE146F6DE27CA79FF5126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5CF1687B7466C29B29346A487D32551B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5D207C0FF74D053D7CD3AC052C54C8C726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5D88B8FE66C957F90E5E69ABD06F903826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5DA97C6721D03103E119E0AEFCA8CCEA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5DDE581D58BBF80F37CB2053EC43961426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5E2BE7C1D152ECB4DD5D9A2CAA693A9826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5F620028C5E8153267FC71BD277213E726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 5F836DA3AC6B4B07170CF504EE9606D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 601BC592A823D8A8B08A0FE7DD094FBB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 608FE5A79031315864AB4B5E5C5B1CD826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 60B45B086BC1FF3C86C07AF265BD28EF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 60F4C1D885EF1B265F9642597DEF94DF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 613143F092B976C72F59636612BB5B8326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6247A4DAF57DC4DE539F914D848D401C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 62CBBD913BF071280DFDFC7AC496602E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 62DE6A534376041D06D8E42E856C625126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 63088C08DF7ED710701638BE966A8B9A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 632AC9DC20AD60FA4E6EAEBDE821845A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 63B3ED5883FD8484FAA1BB17B4B8E70026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 63B7F19B9F763A8AD62A2F62CE56E7F326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 63C543DE2A3FA5BD62D3706298559CA526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 640D26EAEDEA6395E11D90C317C7188826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 641A5E60F034DBCF18352C8923C82A7726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 646DDB383C428CEDF559CC394DEA0A0B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 649A1C9AB2D28CC18C882AEF3A939B2126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 64D61DB55BF5932358E9A059016CCE5D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 64F15E92D7977354461CE2A27577FE3126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6520C2541CF3BA6063B5D380ECC0558F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6529948D92A0B1813AD1AF79312EE77B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 654FB62B9E47E98BDC9306B28112ED5126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 65A4AFBE13110EE0B2A62798FE9550E826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 65C9984DF8C32E5219DA29E5475972BA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 664078E9743068F3C7335E212EDBF10C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 666B3BFEE87767BAA84C04F7237ED77526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6676904461A3BA73CA43BAEB28D9D45726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 673D1124906E49A0F8382BB54D10564326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 67A1EF7D3E0E079C9752E444AE2D716A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 68AA92FE0B18DD8D25D115D0EC00485926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6923177166EE75361C572F75FD8943B826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 693862EC2C5D5C80CB0EA7C757D3D95926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 697E253F6DD47F6867533566596883FD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 69C7A1FB9897289E1B4E9ED93160E46426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 69F34C50C64D1059F0E3DCC5699092F126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6A55E5F97790B25C536E638AE840CAE226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6A84C51E8E6CBDC88668BA6041F8B65226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6AB57EE192CF5F0CB47836D6DB436CF526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6AE132D7F3B889A7431322A794DC216926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6B17800FA482045BD35EB5355CD18D2426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6BB0F7DED801D390F30CFF3B59B5D21C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6D1404570DED1B20FAE3A694A94774B226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6D42B2AB35E28ECFAD441201F8DBCDE326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6E095D9A60A76ED1B36D065C1FEAFC7F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6E2BE8571E3751773FA97B398B5A21FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6E672175DBA7F75D07DF7BAB1B0DC97B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6E76FD089E3467C8352A661F1FEA100726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6EA1197F84ACC88FEE2461D42A52C1D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6EC9F0903AF9AE90A67CC936688A8F8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6F12BAEB2BAB1812412222874631E40226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6F4C682EF9DA1DE025FDD4460FDF776226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6F4D01A97FFFE323F5E2F3E07165FC2A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6FB064D4760A509CDCD83C4D3D8A05C626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 6FDA821411F95B6D950B011226475CEE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 70013CC8905DF57EDB0E563A7CE686EB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 702AE30CE1D88E5B1454B6DCB15AE75926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 70793A5A8A13980EEC0DC7E94768BF4226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 70EB578FDEE944779356E9A96353772D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 70FD42DA2B7E1F6FF8D31EC0DB63BD9926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 712A18A2D553F6E75341FFEB10F4DBD326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7156BC1709798215E9C9FDD7CEACBF1726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 71641E4EB6D7D9AE1825A31B8B07E2B026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 71EE617A9E78DF4A3ABFB53D78DCF88B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7282FCACD0A7BE9201AE0465218BBE8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7289CF22B07FC599CD4188A69360D7DE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 72C5FB8F003667D3DFDB4FF8852C26AB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 72CE4753E8C0143B910E17B051FFA79A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 72E492326A279B663EC2A8C21B9889C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7303B24AE9BE20B2C223069C11CCF78B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 732F5269C5017EAC34FE949979510B6A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 73A1AA9E4619CBA1C8F45CEEEFCA50A226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 73ADACEA4D9EA80AB9EDF66ACBC5C00326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 73D54E4A23503EC905CA84CEB938071426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 742E1B244605A9BC43D4E24E38B7442426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 74700269AF167200F3220FFDE50BB6D926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 74F5A9EED79D4973A6820048470CE6E526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 75293EA9843E52CB5BEADE589BCB9DAE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7551F8151D342C07CCE695E2A362128526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7562341892AC95A19A7DC6108CF6936A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 758F5EFC202D6E24DB0BCBBD784F9BAD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7596D22912933EADEDB438C47A6D18E926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 75C348545705999BC62B17F0743A60E226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 760AB1950B97864FE6687BE89C98759C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 766D3A779D458634873D6FC7BF9E17D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 76BEA5804396F8968675219BC5017E9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 76D0901FC66B8E9053B56358A6E5F06126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 779905F673B7FFFBCA0FD8BDE611E76A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 77B74EAD32231AF9BC3366C2C5BBCB3E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 77CACE274871C02691ED4925E2A6C88926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 77F79D7ADA53BED4AE0FB6D524436F4426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 780C5D1ED4F4E243126BCE7350A3D7BE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 782C331FDC8C3B61756624BEDCE4C67626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 785EAE974BB52B554CA605D89C2403B826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 786BBDA1679DE559D17E3707D628B09426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 78720ADB0202907AA13824277B4334C026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 78E301728DC212CB2D914C3164981A7126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 78FAE3DB5F9FE24DE61023269499C54F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 793A3E2A6490506E83AFEB77FEAB2D5426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 795F008E6D6237D2712F891B2D11778C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 798835E533D92B4B163FCF3BF64D15A026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 79B22BFA6DB20AA200B018A5E333097126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 79B9290EBA100E89F658D3104E5A6B9926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 79E10FC741A6591930708E2BE191C73426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7ABD5506D011908C088F110754952CBC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7B285A86B975FF35D337D7700A39548F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7B55F565B25A181AFD14A8C7B2E3BCE726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7B761D0F9BEF4F80A16F4649D06D88F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7B87D3C6576C65D7D5E5D3EFF050ED3726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7BAC33EE9EBF6D0C0F3CFEE1AA6001D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7BCAE111513E0D8B123DDBF7650FAD3B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7BEFF32D46468C21DE5256B5E3F9E81D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7C06BBA8530DBDCB149EB8D7A94B309826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7C2D39B5D6FB36781B0B4DCF5B3A060A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7C35B71D63FF28E7746F3D8303E2829C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7C48F5127ED51E793FAE628F73C06ED226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7C9029A14842BB111AB0245D482E88AD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7CBDADC14BE303AB49F350E83410ED5526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7D7A42E0E15A03AE7039AA888A6202F326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7D7F75ACAA59FABFB004AB898465929F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7D9D90AC0D2B4513ACB4663BF4E44E9326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7DEED69A351FD8AE1F7D3054EC8B0C9C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7E1637E978B3A8CA57BFE8B6F2E4529426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7E884271134C4A6205E509E6C87961BE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7F1DAA23861B628CEFB36E8A6A9C43AE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7F91D2D67A82A5E12FA63FEF1FD726C526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 7FF2E66CC74738898B9F221563954E7A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 80DA9E739FEF61952C37A06AB71E9A1F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 80E48867C09E8A0C1E635728C0ED76A326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 816AA74495CB8B711EB4B308CF48666826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 829245C0E33233C187F66C393B5F152A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 829B5BE2AB770AAD90395DD45C828D0426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 82C2830EA9E0523EA00E684B3E52DB3C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8349CF1ED8A7887025DB102ED03C3C2126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 838B2227A0AC5D493279E92B1907EE7F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8438E7708BC8E1C53ABC77798DC18C1926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 847C3E29CB1AF7A6546C212A7E60F5E026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 852A891C92CD124A1D4BC800641DCC0826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 853267828B7A7F1ED29ED7D5D6253A6726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 854E0134F764D88F93D07DC12A4A0FC426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8561911FC0FE8066B1E533CC490DAD9426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 85F9DF1B55F332877A3536C926FB898E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 85FC28D7BA8E668F62D7F701310398C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 860A4F115F6F130349608F723CEF695826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8648F182448E0AC0162B01954ADB637F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 873B5F0074FE93A8E7089A875BC0ABFE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8785E642BA6404446B8FBA15D3DC048F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 87DD9D6F1615730314110A64B87151C826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8881A0F2992DE420AD16F0AA42F435FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 88F58B4DF0A2CB5AB4BA928FA7A35E9626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 896391748927B229EC49C8CEA0885C5826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 89EBB83CCFC2BBD65244EE3D89E7ECAA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 89F6C9E6791A6B1ECED1BD64F7EF594126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8A5AC9C17E7E8B5A32D79EB625023A8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8A81CC59D86753782E5A85EDFE190CA726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8AB0C2C6935C092E7F777A0775F203BE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8AD11A908EB79509C77E94CE1806D98B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8ADEA4C589E0CA319E70EA25EA15FB7A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8B3485200045E3E07C77BAC7A72B96C526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8BADED4AAE7CB94AC5BAEE84CC6CBF0226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8BC5B229D6EB667334308359E8E4658326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8BEEE0DEE7AF9650533D15F0BB7D760626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8C7348A05BB25E1DFE6DCD1140D9759926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8CA15C0CBF10D11971DF638448EE999026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8CACD01ACAFA3010996BDDDE84D32B3526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8D0A969AEFBA9B2C28A8F134A295F92726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8D336DCE9A58ED23037A841FC7A5348526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8D4B33897CC5DA0BDBAD072B0F10351126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8D55DD29F334770ECA186DD552B04A5626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8D8C9860DA185B76757D8CD9495B2C0226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8DA3B0F11A42E43FB2AF61B5FFEDE9A826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8DE66C5C05D3ECC177D01CB3326EF7FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8EFF610CA18697F0E4D1CE1AEC27771726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8F048EC16ED0CFD987A8FCB13F3F6CFA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8F4B9C57056A0FEDD74AF87BF751876426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8F56D21151DA51A3BA8430206B20CA2726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8F832B9792BF757B4279335220C79F5126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8F958B39402D162E4819D1DD23D52B7F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8FA85A9424A4E5A694E41532EA8BE15A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8FB9DE6A8C89C8DBBFC7CBCA5E26737026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8FBE26CFD5AA955E7F1476F3D4C7739E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8FC657A379F15DCC9F87AFEE7C30675426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 8FD36041C5C7B6E9384AA3C36565E07A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9161A7FBA077AE63342EC5D345576BF926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 922CE199E1849313DAEAFB07D74DE8EA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 925D68D3A12F68A73369FF97465EE8BD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9294B611C358284268D876610895286726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 92A9CF185E27F3E223A58B0BA94E78B926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 930AF9CA5658B669C882776CDCDE01A626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9358F2568F3316FE7E78A4FA7707C41426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 938E8EEA4C1C51C852F63B5058ADC6A726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 94589949E63EB1BAAA57B2FB34DB116626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 945DFF5765773CB9360492D2910C5C0426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 949F20E1E83E8791475C9A3E9000B57726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 94A1D594B81479CA9DE432A3FFF485F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 94A737FFCAEB9E33CE439D448BA95E1626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 94F32C29FD7225488D4CA7F670BFC4AB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9525D874528DCB6F7884D2FB877F4F0726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 95373DD7A0C00D4769B4E9E2DE63AD2926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 95859521E6D770D68468C13B7201B2D626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9599F5D55A5A42F5C929B52148A0F01326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 95E7DA7C12861346984B8CDA16CD4B4926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 960BEBE926EA7037132CF8E679F1E4EF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 960FCA122224CD07722B238D583B584226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 96385F542C377290ACBCB1F20820908C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 964973B358B348E3B1C7360CEF41DDF026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 96521DC1600E754F4298D4CD7EDB7DC126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9657D00FB84F1549509127EF3303C0AA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 96A7C841F3DCEC94134F228C24A2AA5726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 97B39010FD99A8E2FA43515BE13F162126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9827FF2C8672206D17296BA576E3C3C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 98DFBB91F3DC822FBC283D614AC8941226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 98E4536F4A263640EB8BD894F7D83DCD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 995EF3844F04BF66A3CD8949FF41532C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 99EC152B7754DC5B29C8D2DEAB9289D126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9A1F5A80B991AAA82CD1C05A27EDF0E626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9A4DA6C1A47162047596A17DAABAAB7926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9ADC7903EFDC7F74542BD2B4510CE95F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9AF36741161D34297C8863495A91D2F826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9BA6CAE533517E946A34B480FA314C5C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9BB877FB73E01C02D8052D8E77DFBC0F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9BF4D27A74B03244143246375D29740926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9C0B9D40B4DFCC72947F6FA06F06953A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9C25CBFAD912C33D1B5FAB46ECF2B8EF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9C50BDEF32984BF4F0907549CC7727B226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9C601E975B91447FF81D5DEF4E17731926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9C6079E530C069A23460AD835CF67A9526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9C6FCC238907FBF9714A43D848F969B426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9C761DE49038F7EB29677FF25903E62726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9C76ACD7A795A46F6CCA3FAEAD6F12CE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9CB392B2E521F4164191B4AEBCE5C18426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9D548857402BA7C1BB60527CECB5905C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9DC5DD270AA7D1B8B68DE2EF7858858F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9DFDAA35ED578F0C5E553DD279D1722226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9E0C0D3F14FCEAE7AE67EDF43C054C0626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9EA0606348C250AF43E1E20651475E9F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9F03EE3A86CB603B526FDFB4D8F158F926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9FB9DE629A0F523DADBA8215CBEB3D1626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9FDCDAE601534D255E4613FF34D7738D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9FE29348E76039A4F1BB242F269D24B126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── 9FFE7FAF08D24FF600290944948B306326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A00B2F852EFD36A0ADF91E60F08A772F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A0655ADE6DBD69FB2F6E5F4D6D45376126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A1AF3FBE06899074276FA06982CAC92426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A1DD8F3D96E8E126ED8B78136A67CF8E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A2AE5C16B82EC379C3EA7C0467F4E70426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A2E98351C4DB07D69B823172C775A9C826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A2FB6B739A333C8C62EC1194B778196D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A3305B3B9CAB2A1A34596CB81F48F0D726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A368E7539B23A4AD2EC8D66AC197D78526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A36A38045327F957D7B74E962635361626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A454234D690791A6FF405FAEEF3FA7D326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A478AA05E8471C6CE19F1A92098620D426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A560AEA1AC70F1786807396B99144C6026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A57D4D51D8C55045681B33EBBDC6E16726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A598769A672F82CA5A93D2F2BC688E7426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A5B98F2D95A6FE9DD7380E5568A40F9526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A6151F6790121BC359E29898CF551B0D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A74BEC5E308996AEDC30328B7466451926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A7903763839A88CF3554B15AF40005F626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A79DD70DE7A45EA48C63AFD8C4827F4526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A7C6B5BEE1782EF96D1E9DF72C4420DE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A7F5BE8D6655998A8E094BB0A1F2879326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A87AA0A1A23034D3A76EBF275A3845A426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A87E364F51C1A9175ACDBC29442C1AF126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A8AAF9E7CEBBCA7E4E2E4CF58B09218A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A97A77A0F950F48B0FB53668F3BA71A526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── A9F315D5283953F1B4A8F2C6F9BA5D8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AA6496C48B1D8AB0687D3AA75720C11926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AB112A44594BC3C21E1D2C4490A7D8EA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AB36855452D580E32BCEBBD80112DC2026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AB3D6CA637B6DEFB0042A600B939F05926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── ABB3199A8DB7EF4795FAB7F8FAA2DE7126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── ABC15396A6B78C699AF2448ED56DF4FB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AC015586BA47A919C8FF5648C999165526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AC3CA5EB240BFBE72FD904D6FD40A1EA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AC95A0EB9E385DDE386FFD3FAEF57E1C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── ACDC8F96EC48C2F65318ECCC41EB08D926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AD477C71DB0E263968D025A5E1290F4E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AD5001E2C7C993B340CCF3C294343E2C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AD7BB6B22A4B3C67F50069708EED8BE826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── ADB2AF0F4CDC52FF3FE7FEF2BB2029C626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── ADBC75CED4DC3EE6917FB9718D7CE10A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── ADD667C105A40DEB993B091073ECC26D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AE2F372A6B8E4126DDC9F5C79F6FDAE426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AE370A9DE1AD8155E32B575DFBBA7A0326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AE37525971CC02198D2F5CD3BFA74F6D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AE3A41B5A77F49C3782ECB56FAF4D66026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AE878A7F35C1ED634FC8900E82A12B5C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AF22BF903139EEE0BB6F90AA97FD81DD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AF540AE6A76DD287C916553E358F94E226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AF6F90BD7062EF2DD2034D851F248A8526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AF9DDDC5DCDF6672E03636CB22BB3B5026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AFB14133DDD5FBCC0E2EAB62B9A2B50626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── AFB789B0D75C5E67F1A90447E38B1F4126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B008BEE9120ABDDF71E9E11739A6B4E426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B01C4A41D10AF9B2632402945FDDBA3426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B04B601FC83A8E20201E277AD37C620126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B18F9A08A6846BF11FCC89D77EB401EE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B191F4342059B4C13214E6E1CF6F8EE926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B1BB0383448FEA8A933CD12F3FB9EFBC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B207BA0F82357863153C5DA2C16C1D7526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B28298F1AAB49F37B5B50D64669E8EBA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B2D1DF31CF39131ABF4B73DE463726E626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B305ACB8F940DB255D942ACE2AF2AA4826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B31CD5A8DEA0C74780FA75AC680B5E6726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B38C5493C9ABE0CAB197B0B8A2D1BCAE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B3DFB542E6013E24894719B814BA4D3226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B3F5107A325E848D274D348D68B9C79726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B4121622F75E25BAC2C884FCFD73B37C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B4209774327EAB03363BD3AD79DC833626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B42FFFC6DEF51769D18BF6DA201235D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B4FAC81DED6C4F2193B0136201A5622E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B512DFE856F79872D96BC9E4AC14324A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B55F029B23820615EB6519DC4955DB7826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B585CFCAEF6FEC27374AE5AB742AB31A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B598C64D8D298475700DF7EF8F95F29B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B5E56F53D238D2246CB25F208CE8ED4226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B6169CB5F834A2260E87292CC179E53B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B6498CAC6110DFF81A63B360D4FB612626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B6512E19FC86B525FAAF46436BA6BE3B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B6A7D75FA85CCF448712B0D399A9B64D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B753B00E352F5F43E9966BE818AD898326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B7D75B7909C4D160872AAF2514F3357E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B848FC95A4467B3D353263E72282890426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B8A6F053171EA867E484DF91D602BEF926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B92425B2142934D973D298CBC03EAE1D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B94901133FF0A964EB6DC51F236981E726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── B9E0A749AA2715130D6615D1D3CBD90726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BA5DDFA596ED91248470EFCA16D273EE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BA7A7DB2DCD742D31E7768E718881A2226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BAAAC9C43C842BD7AE04C6960EB7361926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BAF02FF34CA045892B5283295490AE8626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BB0FA848AD868B14925391B00CB161C626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BB2F066FAB7F5247C5887316982A08D526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BB35552EDE53D1F8E60EA852631C34A926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BB3B3CC58E4E439A4226EE1AC3FF78EB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BB71799EA4A6D112B65108E719A654AB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BBA42C3A3E62025C2CFF572CD16FBB7026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BBC17EA5A33C287E168C5F3D65892DF326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BC2680992ED3AD77D0CAD0192BA633AA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BCB564578CBC14639E2FD5312222BD1B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BCBF9EBD2EAB0E0109FB072F2FB7BF0826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BCC4E0829F93DD779FE958B5F33A346626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BD04F968FCC5EF1848218084DD941B8026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BD343486935549E4AB55BE47EFDF863326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BD39A91F4E0D373F046B6560AE7A1ACF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BD843954F9DE598D79198E6AD7ED6C1926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BDA6C9990A1484285899AD57CECD2A6726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BDB616C86D3388BECF810839AA8D9BD826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BDD3C0E0D82C1BA69BA4986F08A8878926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BDF7309AB9F2D1DBC68665CCBEF9659026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BE130F7FFA6F1E301695C856F402887626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BE23C958E7D50913F432C4D2B1441D1726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BE341C532093159151C49A631CDEA75826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BE354BA314F2641528EF43107ED73DFE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BE3C547C7F6CA096EFB5F8F2F7E41E7126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BE81956DF4B3CC8C00F05E594DA516B126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BE83D8E5A2E65FDFA6ABA3C2EB9E3F3226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BEA4D112D51DC86EBFFDD89FDA57BACA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BF635859BCE4C390FFD5667D10DE951A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── BF99A173D027E6F769EC9E93F11BDBF126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C08E48D9D9007865C773127049795EE426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C0B62D991AE09CC5ED59260DF0B7EBDE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C0BB1FBD9A0F99E467535372CFBA2FCA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C1BF5EFEAD0E985B974B5853A8E7893B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C1CD740A2E725F6687E5C03B9A547A6926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C1CE8B09015CC41E5BF1D1C1C1C9A04426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C21C7D20B7F358AC6F014F39D1E2DCA726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C223EBF623BEFB3188E74C13256A1E0326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C24975D5C85CA1D72DBFFB188E557D1626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C29C6628FEE98B8A190C57BAFBC06C8726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C323250B79FC570900DD06244D81695D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C34FE6B2A4A40D7CF16664158E6A9FE226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C37EE421B421DB4B11553CBE28A2290726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C393963C5D637159888076BD3813FFED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C3A574461B58344155AE9F51AB68D92226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C3B8E9A411BC600EC099FA86BD859AC526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C3C44F2D48661943589136955F90469A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C418FFD1F49B3BA34DE24DE85379FF1026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C41E964F169A66EACB85E990580AAB5B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C439E133930DE0840299ED07A466CAC226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C43FA2020F2B261D40EF3D14169A992826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C48AE77BC38E2616752F63B984AE142626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C49A4894D8A7F79D145DC7EC44FB42E026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C4A9979F349013DC13BC8F097C7F8DF426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C51B3782207453B4AD409B9E51D79FE926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C571C20034779979075DC2DAE15E89B726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C5747EC4C90ABCB4B066EB55451345CA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C59017EF484167410591515806E5091526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C593CBA9D6CB8EC5A09E191906FFFBBB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C648A168CB56267FD0C1CC6CBB8DD2F026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C652563A944C69768B5A06A65C19254A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C700F05D98F819FD5674114B646655DA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C7412CBADD26FD08790ACB340BD6C6B326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C74F6390C0C711D846FCC25A5454203F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C788BB7A4D828CC69C59CED6D1E62E9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C79CE15BB73D01C00E79066080F26A3726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C850918ED066E1D7A685FD216C1C9D0B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C861DD12DD20DCDAC22595ACEC3487CE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C8B0DE6E77B28DC5D491C566D7F581AD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C8B8F9B2DC0D60EA5DC71C16C6547D2826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C925E6E20F7E5C3D7053CC79D97A270626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C92D65E9F83313CE93AA6A806B33888526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C94AB8E75E4C4CEB12B064F2AEE201EC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C962D6AB7C88A7BEE3FA3F9DDF4B28F426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C9673CEBED7DE94997F089F241FFC26626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C97010C7A8BE6F35658D302BD2203D7126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C97CDF391B6592302A495A0BF513376226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── C9E208B23E3DDABE3ACB6500D0A2C79A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CA32F2BD954B3EDCF027F914270E289B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CA350253304F557F2A8A56AEE105090126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CA403BECDF575CB6F1E1D222EEF1367926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CA4C20C7192D4E1EDF16FF6E7F8449C926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CA780AA2D7D18DA364F5CBC05905EBA826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CB45A32BA7ADD4E2C965283E36055AC426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CBB1C6C262C1AF30FCCACD3E5E9B833826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CBC8FCE5A2C62AE29DD4F03716BE05C926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CC000DFEC8538297801127C098F7754A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CC61A5865AA2C959B79D6915437AD0F226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CCBC32D95D687F953A7535259C9BB4F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CCC7B3611616E4113DC3BCD320DD147726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CD03788593A6456AC947320808B4CA2626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CD4E9F095C6735A1B058740AC0DC41FE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CD84D2FB9750A184AD8CBAA9BF44E2D826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CD9C26E81DCCC03D72349B7058E1E83226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CE850B396499927225E82EFC4B5366B626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CE97CE4FFB80C7E10D94AC56B8A224E326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CEC0CADE234E13C9CF74351DBA59383C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CEE40FCA44B020616BA394B3F1BC387426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CEF57183F1C4F986A5686FDDA053C6A526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CF3EE33878BF4E319BFF83605163A93D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CF64DC7FB808EBDE90E0A7CA6907A64C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CFBB897785007DE27CDAB34F4095FD3B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── CFCF1045B80F5F821FA1A4C21F24D0AC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D0004A6AFA24B20141E6D74E7AF2E65826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D0424DFF1850BFF207BDF0410D30409A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D0442A85EC0F6B66DEF309B2CADE710326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D0896378C484E669E9EDDD7117F3E16F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D24F1B85C22C977F756F07A8C15913AC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D273D7807205CD23A504F75B78F38C2F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D2904BDA0A5974A06FFBD33F32144BA626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D29327B18E723BACB691FEFA145A549026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D2C9441E707DD40C01238A7DB771CBF226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D2FFF839D7F7D289DB6062A293E8A7AB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D3C410459651E3377C62272AC416094D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D3D5D8099F62BC74807CA2049CBBA67F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D3FA1272759E589F4C9E7928DD465C3726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D40047096569386023109B4233E68EB626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D40730B5BC475E6FCB5614039BD999B626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D4640979FE48F93964295D33A3F58B9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D478C1521E044A626490757F2911F9ED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D4937537A4887CBF7CB24E234696421726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D4EEDECF086B73ED632AEDFD961189F126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D567C4DC69F2006F9A30EF55FDA1AA0A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D570679D64687DC472B3116894C2A29D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D5AE957B96AD300E9C283AB1D601EA0626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D5B7F7438C699C30345A07A542F1027226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D5BAF8445ED01E900FB046A6A820B44926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D5D63C0F381462E4B5DC8739B93B4CA026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D626318C98442CB841E54554ECFC6A2A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D62F5C099E49E76B2B897F40526F9C3226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D644C7A3D1DA79593F60D6EB9C7E31FF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D668CB982CE908AC40BBFF74C733452526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D6A586269035C03C3803B0DBD2D7D33F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D6C802B9D836612B107B74EFFBA43FA526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D706E3123BA5B1B83ADDEA6B827FA85226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D709A0DBE2AE453E01A5B35AD428A31426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D70D0714BB0ED20C129AB9DC74247BE226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D75E85EB909492A9994C6EC0441BB0A126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D7F0EABC5CE5BD2D6D1754EE1748AE1526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D81A01E0AABAFB7B0C43B6DF05D2908126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D8228A834AEA6B583F060573EB38AFBF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D83D71C023458607A370A9F11F83C27A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D8705E70A16BBDC081ADE43974E801CC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D87CB0E17CF9D4A616048663A0D6437F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D89B892A15A7470D29790C16DFF364D626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D8CFD35E738F9EE9B0114F78381EFAAD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D8D667D0C6256714558A4E347C517D6426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D8DBCA77F39E14D24C5AEFB98495C4ED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D93838A72C6CF613E905363D449D475F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D976DDF0C359633E7E3B0A6062C1313C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── D9DDB55890081FF89C0CB958E3AFA0E026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DA27BDC9A3DD229D75BD139A9D88654F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DA392E6EFD8EFB8078953AB8C8672D1926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DA3EA3105C0E1CC6526B8B5410B1AD1926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DA821CBBD1FB0C81270FC8C6461AD02F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DABA90D8151C8EBC1D9A289FB992CCCD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DAD7F2C8E5859FC9FA8041F927B6FF9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DB35F0548F46A6205F25723E5735583B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DBEE69EDFB5EA46D6E7EDB1AB3481E6126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DBF5E3D50C0E59EBBE54AB3103D680DD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DBFAFAD6D2CC76659C78E6FA99142E2B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DC160E409FBE058FB26ECC2E3EB5AE9326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DC1BE035B46C4F29526135A82A2FE57426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DC6E7C4B82D22553BD01D46A25FBC72826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DC8F583D544388AF7AB5DFDED827EE0326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DCA4D8F673D2205C2477C2428326C78626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DCB06F9FF3FA4A3CC2CC2219117F9D6626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DCB7CBAEBD84D4897B43F6072BB4E50B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DCD67D214A182A17017D03355405D54326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DD35641FD78228C594722FA9A6754C1826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DDC6099E5AE0E33C0AD7DDEE32AF0DED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DDD70E16606612E8E7B11A51F130D2AD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DDF3F654037779A88FD341238CB11BAE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DE12DBF60FA5018A50EB961F397A3B9326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DE206D00B7F2606BF2726D3A7A8C8EEC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DEE6339701B31071E56E860B15AA192B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DEF621198B74B6B56E5D53E045BE87A926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DEFC0FE53AB8F69B7039B66BD8B6DFB226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DF070C73AFDFECA2AE7CFB93BEC6A35E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DF14158D057646E97230825B66DC2CA926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DF295DF17BB9CD60E1755A03DC50201726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DF30AA5FB561D631B668BC14A620B0E526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DF4697B9472E60508B091C83DF7F595E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DF5BB2AC270C9102215DE1D0248554A726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DF6FFC0B71CBC586EE7C9751D0A01A1926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DFBA3A580446955AC3732813FFEF042B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── DFFB36408D1BE9F055ADE8BE240F1D4026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E0883CB3BF734AF0F5115119C685F52726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E0B0372518D8750522A86BB7B8F5C56E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E0B29574AB472EA5603460F2181D1BD826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E0ECD0164F997D7C0323EBDBDE37562E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E0F37662EAB16588BD6DA6AAAA5DCE7226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E0F7E82227F20326319200061EE1B4ED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E1306034E13A5F0B3F69E2B4D6ADDA7126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E13BA73E6A225C1815ABA35D1A7AADA126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E16CE3BE9C3F72C269693498469C46BB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E1F689C822DBF39D50C56D91AA1AB60C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E228021D430258982FE65022B51E894826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E237B6B946B8F59A8967A28A71573CD526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E299C21266284DA289460C1D7629B0DF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E2A1766823B99431AB9A80713638E64026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E2C87866D84AA92A469D9616D69DAF9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E328FB0C508A8260FE5432D6827C46EF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E3429B9845567411F6B41961DB5F3ED026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E3D3A141196954FEFAA3FD50981F7A4D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E42540D18F58EE2552DF0F7064E0EFDA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E43201DD47CFCCFDBF6F9EDEA727925E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E491FF308D87F013AEC36A7BFDD1A00C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E4DC456E0C6EFE873888E4F561A7F5C026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E4F65A559482D455A5798ADDCC6FDD8226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E522F1BF8C72B1EC75610955C70DE4E226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E526A8B94DE520CCD9D42133667E7A4026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E535FD54C9240970D3888DA2FEF3181726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E5473344D46CA640D3E31C8C0EBEC97326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E56198614418C2755E84542B52BF63B026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E57640EE4E51DBD9F2A926285077D16026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E590DCBF2DA3A79320927DA6F4A19B0426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E5D90886E3D43D1B0ABCB8FCD81C90A426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E6708502A6CA2AD8EB9A01802BD5367126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E673E30D16222FE84C897D065AC6CE7726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E69677CB7AEF187A2F07039B5FF238B426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E703E7A22298D7F07C6FEB38EC04644026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E7A3923405BFD325531D9E2ACCB29BFE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E8046B98504B5AD8141AD13ECF96D23326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E863BFFC8268F6C5154B5B99F549279626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E86A466375FEBCA6D17EEABCAE09DAA326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E8C900F2F5969EBEF8637B287B6130F226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E9375E432BA28643BD7681F9A6C7CE9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E9D0F3160A47D73B4E3EBAE58AE5F84626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E9D9F49BE9962BE1CCFF1423B391E62126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── E9F3E0C7F47C8A835180794137D7A76226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EA577B29965B356871F17CAF72AEDD9C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EA80B04C4499F789DC2F1F68319427DD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EADE6F7275677305F9F11AFB61DAA78E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EB363D7710F4C71F5364349B3B8F657126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EC064678B0EB1DB35829970D41782E1426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EC76DE52A94382898480297285FF06F026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EC85C7775A79C611CFF5509EA1DD217326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EC9C7BBDCB941224669806A32819012126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── ED3FC440E615BFF6FDDF4DACF0C68C3B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── ED7852491C39339C21091A9BA8144C9426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EE40163526D57BD775CDD3BE360AF82B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EE41BBEBA05880A4F404A8588A85A9E826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EE6EDB3683FBB1779B1C67EBDAC0657226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EE812D1FD237AA8336D8061180394B7326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EEA337A7BDBD846E8CAA1E8F6AFBD63726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EEAD5509235EF8E633A9FD91096B557E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EEC2B689BEEC6E38683B6F85CCBCD6AA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EECD867A5FC8ACC9C79CE1DDB8AD51B726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EEEC63E9C364A38D654A6F214872DCDC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EF2FAFD78CC74EDF29259F706785A4C526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EF3529EFF16A7630C2B11A7BED0F211126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EF74A94ACFFABD61B825D41B78E0654026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EF90001060F660047B00FC213C55A16426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── EFC891F9D2FAF787AC49CBFA5C6E8A6426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F027E36A1F120ED1F3C1DE7198B9921B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F0756EE75B93CC658532FD67540157FE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F10668CAE076433374516DD2959317B326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F1252850FFFBD5E5502D26C222A2B35726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F14DB15D5A1DEA9236489E6D27ACE12626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F17F40CE5C26E599069266FAA265D51A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F1B51ADDF287F26C8E1ADF49BE4AD19826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F1EA2F8DBB0BF43BF98C3FAF3352A22726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F1F1D294220A8BD1DBB2CED0DB328D0026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F251BED5ADDBA8A32B925BA1FC9F0A2A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F264A4EBA49F9A7DA1F7A8008524ED5026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F35D55C9C3BB4E3D1DF7FB3A5C007DB126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F36CE44B4FB7E560C2959F8179BB2C8326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F381109D39C8681E20617529E3FC4FD126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F3971FFEC7CAB92F951946EC9330B93026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F3EEA7BF3CB51EF100150A09DCEACF3D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F3F1EC54A12E6A27721BB8B41AAEDAD126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F459C60E131CF5F5DB72F8A52E1F214D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F4B018A521341142888B69A49B63742226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F4B1B5CA8855E0619F65A69BE22CCC2D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F4D05835AB13D707A2A45820692CCD3526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F4D640B0A0785081CE6336E3E460174526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F5152907A8FAB72C85994162695B29B726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F556E5E83AFC2AD688EAAB1D31055B8226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F558C08AA26139D456164A9B83ED3A8726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F593FFAA7F1B8B94EC6322C1FB53EAA726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F5A2F176F064585B8124A10832ED7F6626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F5B468DFE9C49AE7546392FF3F4A53FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F5C9008A3403B7900C3D496C3915589926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F5D7C633D5DE399B49936E60D4539AA326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F5F3A5AE287130F616EFAB98901796F326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F5FD1C5FE68E3D18FEE04083BC0275E226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F632E808D1BE4E34CE75452E39C122EB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F65FB15F699F8D844C2AB206F8A3D7BD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F729A8F95BD572757D800A91555A043226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F7C1B421CA035FFDD64AD40A78B6949A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F819095D97FA1CC090B36EC0FFF8259626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F87249BE2A724F8AF737D10B6FBD649126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F8A8A7D6DBC4CBAF519EF783ED2C056A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F8D8F97F763665FA13E34A63D618FF0226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F9226A83265532CC44AECDE10988DCD926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F94766A039D1D0CFD33E1E6B05AC814C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F9A65534EB39BB4405530D03BE6D009426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── F9D7AF4FF2CEC5CF2789E4630F2B067126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FA4231B36C8C13849BA699F12555A91926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FA84C0E0E6000446F3A10FCA7120E05126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FA8C9BE8A432F00658DDC7FEA6E284CD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FB7916FE7EB000C8171F031C9875084E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FB912541B77645ECC05694D1BE85BF4426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FBE50E596AC50E78FD8FDCF15AE060D726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FBF9B330B7913E7462E4AF54BD4CDCE326E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FCA5BE44828979D4359687F72865DF4426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FCD3B8785C89FFBE57371159A0276D6526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FCEC694E866318DC33F719E496A9050526E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FD38F1D79990EE8DB1C13CDFAC3C961626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FD414F56A9980FEC10FD8F8D2AA9D09D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FD57BAD38B30CA03175E9EE1152947D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FD86280E01126284948BF038C9FFFACD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FDC7D60CDC6182F05A49684C9D73305226E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FDE4A6CCDEA080C3843D6854857A12C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FE5947EEB4B1A004FD000ED617CEF79926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FE885268F51568FB1B97F20C1A4DDBB726E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FEBC3BF8AB510FB079F48C9499C6663426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FEC4FFDFD7E5984C69DB8C0352313F8826E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FECC33550D6933835188B8AAFE5CF86F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FEEE31FB80C01D13D8F0F918FA73447426E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FEFDB793BF3DEC33D77A46FF58A2CEF926E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FEFE3732191AEE95CDC211E5164D4CBA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FF32FF563CD180CEC9D03F660175BCAF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FF4A1DA29C9CA53145348A1F12E85FCC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── FF5DDA524F513880D6CE738A0CF1267626E4EC3F9E5F65D12C343741CDA3F64F.pygtex ├── colorful.pygstyle ├── default-pyg-prefix.pygstyle └── default.pygstyle ├── fig ├── 1008802356788736.png ├── 1008802515054144.png ├── 1017024373322432l.png ├── 1017032122300544l.png ├── 1018496437713568l.png ├── 1019401123918240l.png ├── 1019633050057984l.png ├── 1019633079028160l.png ├── 1048401552601344l.png ├── 1050933742009056l.png ├── 1183096336546240l.png ├── 1183103158580480l.png ├── 1183105155068736l.png ├── 1249598058265600l.png ├── 1249600178485568l.png ├── 1249600522419392l.png ├── 12831079132037780.png ├── 12903050704323210.png ├── 1311543585144897l.png ├── 1342562604417090l.png ├── 1346188160794690l.png ├── 1346189421183041l.png ├── 1346190218100802l.png ├── 1346267955331105l.png ├── 1346268110520386l.png ├── 1346290294194241l.png ├── 1346290325651521l.png ├── 1346303361548354l.png ├── 1346304282198081l.png ├── 1346727531511874l.png ├── 9212153960043840.png ├── 9229153429258240.png ├── 9230247568328960.png ├── 9230254446989120.png ├── 9236263761773440.png ├── 9237918782554560.png ├── 9237920586134400.png ├── 9237921916377600.png ├── 9239237591896000.png ├── 9239237870188160.png ├── 9239304719270080.png ├── 9239735167876800.png ├── 9239736475158720.png ├── 9240168310386880.png ├── 9288179064464320.png ├── 9466582752136320.png ├── 9466583066904000.png ├── 9466584239922880.png ├── 9466587096437760.png ├── 949444125467040.png ├── 950413532592512.png ├── 950413553562752.png ├── 950413570828960.png ├── 950415476737952.png ├── 950415873256992.png ├── 950569639986880.png ├── 950571217609344.png ├── 950572257640320.png ├── 950751840957632.png ├── 950751878708448.png ├── 950751913543456.png ├── 950751959286720.png ├── 951373547960800.png ├── 951373657012736.png ├── 951373763967808.png ├── 951373786253056.png ├── 951383573211136.png ├── 951385556253728.png ├── 951386163120736.png ├── 954926361167104.png ├── 954926929668576.png ├── 954926987474240.png ├── 954927046197152.png ├── 955624199250624.png ├── 955626563299584.png ├── 955712165379744.png ├── 955719702776576.png ├── 956056345770752.png ├── 956056362546592.png ├── 956084297542656.png ├── 956187757507296.png ├── 956196693474432.png ├── 956198702546240.png ├── 956198878703904.png ├── 966760155050624.png ├── 966760380198752.png ├── 967446760519840.png ├── 967453175707264.png ├── 967455607327072.png ├── 967464310443456.png ├── 967488004941504.png ├── 967965753208928.png ├── 972515044819040.png ├── 972676918012640.png └── 972677353581536.png ├── gen.aux ├── gen.log ├── gen.out ├── gen.pdf ├── gen.synctex.gz ├── gen.tex ├── gen.toc └── hd.tex /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background1.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background10.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background11.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background2.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background3.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background4.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background5.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background6.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background7.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background8.pdf -------------------------------------------------------------------------------- /eisvogel_test/backgrounds/background9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/backgrounds/background9.pdf -------------------------------------------------------------------------------- /eisvogel_test/build.bat: -------------------------------------------------------------------------------- 1 | pandoc "document.md" -o "document.tex" --from markdown --template "eisvogel.tex" --highlight-style kate --pdf-engine "xelatex" -V CJKmainfont="SimSun" -------------------------------------------------------------------------------- /eisvogel_test/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/eisvogel_test/document.pdf -------------------------------------------------------------------------------- /eisvogel_test/simple.bat: -------------------------------------------------------------------------------- 1 | pandoc "document.md" -o "document2.tex" --from markdown -t latex -------------------------------------------------------------------------------- /md/03.2.0Python代码运行助手.md: -------------------------------------------------------------------------------- 1 | ## Python 代码运行助手 2 | 3 | #### Python 代码运行助手 4 | 5 | Python 代码运行助手可以让你在线输入 Python 代码,只需要在网页输入代码,然后点击`Run`按钮,代码被发送到远程执行后,在网页显示代码执行结果: 6 | 7 | ![](\fig\1342562604417090l.png) 8 | 9 | ### 试试效果 10 | 11 | 需要支持 HTML5 的浏览器: 12 | 13 | * IE >= 9 14 | * Edge 15 | * Firefox 16 | * Chrome 17 | * Safario 18 | -------------------------------------------------------------------------------- /md/06.0.0高级特性.md: -------------------------------------------------------------------------------- 1 | ## 高级特性 2 | 3 | 掌握了 Python 的数据类型、语句和函数,基本上就可以编写出很多有用的程序了。 4 | 5 | 比如构造一个`1, 3, 5, 7, ..., 99`的列表,可以通过循环实现: 6 | 7 | ``` 8 | L = [] 9 | n = 1 10 | while n <= 99: 11 | L.append(n) 12 | n = n + 2 13 | ``` 14 | 15 | 取 list 的前一半的元素,也可以通过循环实现。 16 | 17 | 但是在 Python 中,代码不是越多越好,而是越少越好。代码不是越复杂越好,而是越简单越好。 18 | 19 | 基于这一思想,我们来介绍 Python 中非常有用的高级特性,1 行代码能实现的功能,决不写 5 行代码。请始终牢记,代码越少,开发效率越高。 20 | -------------------------------------------------------------------------------- /md/10.0.0面向对象高级编程.md: -------------------------------------------------------------------------------- 1 | ## 面向对象高级编程 2 | 3 | #### 面向对象高级编程 4 | 5 | 阅读: 74839692 [编辑](https://www.liaoxuefeng.com/manage/wiki/wikipage_update?id=1017501628721248) 6 | 7 | * * * 8 | 9 | 数据封装、继承和多态只是面向对象程序设计中最基础的 3 个概念。在 Python 中,面向对象还有很多高级特性,允许我们写出非常强大的功能。 10 | 11 | 我们会讨论多重继承、定制类、元类等概念。 12 | 13 | -------------------------------------------------------------------------------- /md/15.0.0常用内建模块.md: -------------------------------------------------------------------------------- 1 | ## 常用内建模块 2 | 3 | Python之所以自称“batteries included”,就是因为内置了许多非常有用的模块,无需额外安装和配置,即可直接使用。 4 | 5 | 本章将介绍一些常用的内建模块。 -------------------------------------------------------------------------------- /md/16.0.0常用第三方模块.md: -------------------------------------------------------------------------------- 1 | ## 常用第三方模块 2 | 3 | #### 常用第三方模块 4 | 5 | 除了内建的模块外,Python还有大量的第三方模块。 6 | 7 | 基本上,所有的第三方模块都会在[PyPI - the Python Package Index](https://pypi.python.org/)上注册,只要找到对应的模块名字,即可用pip安装。 8 | 9 | 此外,在[安装第三方模块](https://www.liaoxuefeng.com/wiki/1016959663602400/1017493741106496)一节中,我们强烈推荐安装[Anaconda](https://www.anaconda.com/),安装后,数十个常用的第三方模块就已经就绪,不用pip手动安装。 10 | 11 | 本章介绍常用的第三方模块。 12 | 13 | -------------------------------------------------------------------------------- /md/27.0.0期末总结.md: -------------------------------------------------------------------------------- 1 | ## 期末总结 2 | 3 | 终于到了期末总结的时刻了! 4 | 5 | 经过一段时间的学习,相信你对 Python 已经初步掌握。一开始,可能觉得 Python 上手很容易,可是越往后学,会越困难,有的时候,发现理解不了代码,这时,不妨停下来思考一下,先把概念搞清楚,代码自然就明白了。 6 | 7 | Python 非常适合初学者用来进入计算机编程领域。Python 属于非常高级的语言,掌握了这门高级语言,就对计算机编程的核心思想——抽象有了初步理解。如果希望继续深入学习计算机编程,可以学习 Java、C、JavaScript、Lisp 等不同类型的语言,只有多掌握不同领域的语言,有比较才更有收获。 8 | 9 | ![](\fig\1018496437713568l.png) 10 | -------------------------------------------------------------------------------- /md/fig/1008802356788736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1008802356788736.png -------------------------------------------------------------------------------- /md/fig/1008802515054144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1008802515054144.png -------------------------------------------------------------------------------- /md/fig/1017024373322432l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1017024373322432l.png -------------------------------------------------------------------------------- /md/fig/1017032122300544l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1017032122300544l.png -------------------------------------------------------------------------------- /md/fig/1018496437713568l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1018496437713568l.png -------------------------------------------------------------------------------- /md/fig/1019401123918240l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1019401123918240l.png -------------------------------------------------------------------------------- /md/fig/1019633050057984l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1019633050057984l.png -------------------------------------------------------------------------------- /md/fig/1019633079028160l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1019633079028160l.png -------------------------------------------------------------------------------- /md/fig/1048401552601344l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1048401552601344l.png -------------------------------------------------------------------------------- /md/fig/1050933742009056l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1050933742009056l.png -------------------------------------------------------------------------------- /md/fig/1183096336546240l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1183096336546240l.png -------------------------------------------------------------------------------- /md/fig/1183103158580480l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1183103158580480l.png -------------------------------------------------------------------------------- /md/fig/1183105155068736l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1183105155068736l.png -------------------------------------------------------------------------------- /md/fig/1249598058265600l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1249598058265600l.png -------------------------------------------------------------------------------- /md/fig/1249600178485568l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1249600178485568l.png -------------------------------------------------------------------------------- /md/fig/1249600522419392l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1249600522419392l.png -------------------------------------------------------------------------------- /md/fig/12831079132037780.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/12831079132037780.png -------------------------------------------------------------------------------- /md/fig/12903050704323210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/12903050704323210.png -------------------------------------------------------------------------------- /md/fig/1311543585144897l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1311543585144897l.png -------------------------------------------------------------------------------- /md/fig/1342562604417090l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1342562604417090l.png -------------------------------------------------------------------------------- /md/fig/1346188160794690l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346188160794690l.png -------------------------------------------------------------------------------- /md/fig/1346189421183041l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346189421183041l.png -------------------------------------------------------------------------------- /md/fig/1346190218100802l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346190218100802l.png -------------------------------------------------------------------------------- /md/fig/1346267955331105l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346267955331105l.png -------------------------------------------------------------------------------- /md/fig/1346268110520386l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346268110520386l.png -------------------------------------------------------------------------------- /md/fig/1346290294194241l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346290294194241l.png -------------------------------------------------------------------------------- /md/fig/1346290325651521l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346290325651521l.png -------------------------------------------------------------------------------- /md/fig/1346303361548354l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346303361548354l.png -------------------------------------------------------------------------------- /md/fig/1346304282198081l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346304282198081l.png -------------------------------------------------------------------------------- /md/fig/1346727531511874l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/1346727531511874l.png -------------------------------------------------------------------------------- /md/fig/9212153960043840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9212153960043840.png -------------------------------------------------------------------------------- /md/fig/9229153429258240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9229153429258240.png -------------------------------------------------------------------------------- /md/fig/9230247568328960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9230247568328960.png -------------------------------------------------------------------------------- /md/fig/9230254446989120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9230254446989120.png -------------------------------------------------------------------------------- /md/fig/9236263761773440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9236263761773440.png -------------------------------------------------------------------------------- /md/fig/9237918782554560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9237918782554560.png -------------------------------------------------------------------------------- /md/fig/9237920586134400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9237920586134400.png -------------------------------------------------------------------------------- /md/fig/9237921916377600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9237921916377600.png -------------------------------------------------------------------------------- /md/fig/9239237591896000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9239237591896000.png -------------------------------------------------------------------------------- /md/fig/9239237870188160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9239237870188160.png -------------------------------------------------------------------------------- /md/fig/9239304719270080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9239304719270080.png -------------------------------------------------------------------------------- /md/fig/9239735167876800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9239735167876800.png -------------------------------------------------------------------------------- /md/fig/9239736475158720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9239736475158720.png -------------------------------------------------------------------------------- /md/fig/9240168310386880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9240168310386880.png -------------------------------------------------------------------------------- /md/fig/9288179064464320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9288179064464320.png -------------------------------------------------------------------------------- /md/fig/9466582752136320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9466582752136320.png -------------------------------------------------------------------------------- /md/fig/9466583066904000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9466583066904000.png -------------------------------------------------------------------------------- /md/fig/9466584239922880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9466584239922880.png -------------------------------------------------------------------------------- /md/fig/9466587096437760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/9466587096437760.png -------------------------------------------------------------------------------- /md/fig/949444125467040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/949444125467040.png -------------------------------------------------------------------------------- /md/fig/950413532592512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950413532592512.png -------------------------------------------------------------------------------- /md/fig/950413553562752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950413553562752.png -------------------------------------------------------------------------------- /md/fig/950413570828960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950413570828960.png -------------------------------------------------------------------------------- /md/fig/950415476737952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950415476737952.png -------------------------------------------------------------------------------- /md/fig/950415873256992.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950415873256992.png -------------------------------------------------------------------------------- /md/fig/950569639986880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950569639986880.png -------------------------------------------------------------------------------- /md/fig/950571217609344.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950571217609344.png -------------------------------------------------------------------------------- /md/fig/950572257640320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950572257640320.png -------------------------------------------------------------------------------- /md/fig/950751840957632.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950751840957632.png -------------------------------------------------------------------------------- /md/fig/950751878708448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950751878708448.png -------------------------------------------------------------------------------- /md/fig/950751913543456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950751913543456.png -------------------------------------------------------------------------------- /md/fig/950751959286720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/950751959286720.png -------------------------------------------------------------------------------- /md/fig/951373547960800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/951373547960800.png -------------------------------------------------------------------------------- /md/fig/951373657012736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/951373657012736.png -------------------------------------------------------------------------------- /md/fig/951373763967808.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/951373763967808.png -------------------------------------------------------------------------------- /md/fig/951373786253056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/951373786253056.png -------------------------------------------------------------------------------- /md/fig/951383573211136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/951383573211136.png -------------------------------------------------------------------------------- /md/fig/951385556253728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/951385556253728.png -------------------------------------------------------------------------------- /md/fig/951386163120736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/951386163120736.png -------------------------------------------------------------------------------- /md/fig/954926361167104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/954926361167104.png -------------------------------------------------------------------------------- /md/fig/954926929668576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/954926929668576.png -------------------------------------------------------------------------------- /md/fig/954926987474240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/954926987474240.png -------------------------------------------------------------------------------- /md/fig/954927046197152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/954927046197152.png -------------------------------------------------------------------------------- /md/fig/955624199250624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/955624199250624.png -------------------------------------------------------------------------------- /md/fig/955626563299584.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/955626563299584.png -------------------------------------------------------------------------------- /md/fig/955712165379744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/955712165379744.png -------------------------------------------------------------------------------- /md/fig/955719702776576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/955719702776576.png -------------------------------------------------------------------------------- /md/fig/956056345770752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/956056345770752.png -------------------------------------------------------------------------------- /md/fig/956056362546592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/956056362546592.png -------------------------------------------------------------------------------- /md/fig/956084297542656.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/956084297542656.png -------------------------------------------------------------------------------- /md/fig/956187757507296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/956187757507296.png -------------------------------------------------------------------------------- /md/fig/956196693474432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/956196693474432.png -------------------------------------------------------------------------------- /md/fig/956198702546240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/956198702546240.png -------------------------------------------------------------------------------- /md/fig/956198878703904.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/956198878703904.png -------------------------------------------------------------------------------- /md/fig/966760155050624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/966760155050624.png -------------------------------------------------------------------------------- /md/fig/966760380198752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/966760380198752.png -------------------------------------------------------------------------------- /md/fig/967446760519840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/967446760519840.png -------------------------------------------------------------------------------- /md/fig/967453175707264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/967453175707264.png -------------------------------------------------------------------------------- /md/fig/967455607327072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/967455607327072.png -------------------------------------------------------------------------------- /md/fig/967464310443456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/967464310443456.png -------------------------------------------------------------------------------- /md/fig/967488004941504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/967488004941504.png -------------------------------------------------------------------------------- /md/fig/967965753208928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/967965753208928.png -------------------------------------------------------------------------------- /md/fig/972515044819040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/972515044819040.png -------------------------------------------------------------------------------- /md/fig/972676918012640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/972676918012640.png -------------------------------------------------------------------------------- /md/fig/972677353581536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/md/fig/972677353581536.png -------------------------------------------------------------------------------- /tex/15.0.0常用内建模块.tex: -------------------------------------------------------------------------------- 1 | \hypertarget{ux5e38ux7528ux5185ux5efaux6a21ux5757}{% 2 | \subsection{常用内建模块}\label{ux5e38ux7528ux5185ux5efaux6a21ux5757}} 3 | 4 | Python之所以自称``batteries 5 | included'',就是因为内置了许多非常有用的模块,无需额外安装和配置,即可直接使用。 6 | 7 | 本章将介绍一些常用的内建模块。 8 | 9 | -------------------------------------------------------------------------------- /tex/_minted-gen/020E1EC524ED8525B7F1DDA2599E1F9726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{with} \PYG{n}{Query}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Bob\PYGZsq{}}\PYG{p}{)} \PYG{k}{as} \PYG{n}{q}\PYG{p}{:} 3 | \PYG{n}{q}\PYG{o}{.}\PYG{n}{query}\PYG{p}{()} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/02C86357251CB3C2D33605DF75830C8326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{sudo} \PYG{n}{pip3} \PYG{n}{install} \PYG{n}{jinja2} \PYG{n}{aiomysql} \PYG{n}{aiohttp} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0389609861EBDC617891BD5D98C48F9C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{user} \PYG{o}{=} \PYG{n}{User}\PYG{p}{(}\PYG{n+nb}{id}\PYG{o}{=}\PYG{l+m+mi}{123}\PYG{p}{,} \PYG{n}{name}\PYG{o}{=}\PYG{l+s+s1}{\PYGZsq{}Michael\PYGZsq{}}\PYG{p}{)} 3 | \PYG{k}{yield from} \PYG{n}{user}\PYG{o}{.}\PYG{n}{save}\PYG{p}{()} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/03D19DBA2007D7A7041E9454E786F0F926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{p}{(}\PYG{n}{venv}\PYG{p}{)}\PYG{n}{Mac}\PYG{p}{:}\PYG{n}{myproject} \PYG{n}{michael}\PYG{err}{\PYGZdl{}} \PYG{n}{deactivate} 3 | \PYG{n}{Mac}\PYG{p}{:}\PYG{n}{myproject} \PYG{n}{michael}\PYG{err}{\PYGZdl{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/044102C62E1DF564AF1938483D4AC0CE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{d} \PYG{o}{=} \PYG{n+nb}{dict}\PYG{p}{(}\PYG{n}{name}\PYG{o}{=}\PYG{l+s+s1}{\PYGZsq{}Bob\PYGZsq{}}\PYG{p}{,} \PYG{n}{age}\PYG{o}{=}\PYG{l+m+mi}{20}\PYG{p}{,} \PYG{n}{score}\PYG{o}{=}\PYG{l+m+mi}{88}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0469E1C57DBBC8F2C698F30B78D0200B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s}\PYG{o}{.}\PYG{n}{close}\PYG{p}{()} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/04E4B57CAE8C9ABE16AF4BC882F88B5426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{nums} \PYG{o}{=} \PYG{p}{[}\PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{,} \PYG{l+m+mi}{3}\PYG{p}{]} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{calc}\PYG{p}{(}\PYG{o}{*}\PYG{n}{nums}\PYG{p}{)} 4 | \PYG{l+m+mi}{14} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/050FCE5AF8EE76D6C6104066A4FB2CDF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{try}\PYG{o}{...} 3 | \PYG{n}{result}\PYG{p}{:} \PYG{l+m+mi}{5} 4 | \PYG{k}{finally}\PYG{o}{...} 5 | \PYG{n}{END} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/0557C745AB4EC38A28CD21478A4585AB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+s+s1}{\PYGZsq{}abcd\PYGZsq{}} \PYG{o}{\PYGZhy{}\PYGZgt{}} \PYG{l+s+s1}{\PYGZsq{}YWJjZA==\PYGZsq{}} 3 | 4 | \PYG{l+s+s1}{\PYGZsq{}abcd\PYGZsq{}} \PYG{o}{\PYGZhy{}\PYGZgt{}} \PYG{l+s+s1}{\PYGZsq{}YWJjZA\PYGZsq{}} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/061E8F3A91CA864DB8AAA8F606F1CD5E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{power}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{)} 3 | \PYG{l+m+mi}{25} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{power}\PYG{p}{(}\PYG{l+m+mi}{15}\PYG{p}{)} 5 | \PYG{l+m+mi}{225} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/073977076880EA7896EFD53436272D0626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip} \PYG{n}{install} \PYG{n}{mysql}\PYG{o}{\PYGZhy{}}\PYG{n}{connector} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/078E05BA101ECEE8B4239E53B540E8CF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{power}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{)} 3 | \PYG{l+m+mi}{25} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{power}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{,} \PYG{l+m+mi}{3}\PYG{p}{)} 5 | \PYG{l+m+mi}{125} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/07BB689681B740196302A7F8A685241D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s}\PYG{o}{.}\PYG{n}{connect}\PYG{p}{((}\PYG{l+s+s1}{\PYGZsq{}www.sina.com.cn\PYGZsq{}}\PYG{p}{,} \PYG{l+m+mi}{80}\PYG{p}{))} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0885FFF7A6B15A1EBC952769006D4EF726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+m+mi}{2015}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{04}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{19} \PYG{l+m+mi}{12}\PYG{p}{:}\PYG{l+m+mi}{20}\PYG{p}{:}\PYG{l+m+mi}{00} \PYG{n}{UTC}\PYG{o}{+}\PYG{l+m+mi}{8}\PYG{p}{:}\PYG{l+m+mi}{00} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0999C80E88DE1C86BFA56B245E39924026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{n}{test}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{n}{test}\PYG{o}{.}\PYG{n}{py} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/0A2C6C007CE704A09B10DD1D4190745826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZlt{}}\PYG{n}{a} \PYG{n}{href}\PYG{o}{=}\PYG{l+s+s2}{\PYGZdq{}/\PYGZdq{}}\PYG{o}{\PYGZgt{}}\PYG{n}{python}\PYG{o}{\PYGZlt{}/}\PYG{n}{a}\PYG{o}{\PYGZgt{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0A8A325D8C92200F507498DAAD7432C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{for} \PYG{n}{line} \PYG{o+ow}{in} \PYG{n}{f}\PYG{o}{.}\PYG{n}{readlines}\PYG{p}{():} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{line}\PYG{o}{.}\PYG{n}{strip}\PYG{p}{())} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/0B0C055171662B8276CF81195E32610226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{pip} \PYG{n}{install} \PYG{n}{aiohttp} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0BAB18CA8476D5DC189BA2EFB1D3770E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{MyList}\PYG{p}{(}\PYG{n+nb}{list}\PYG{p}{,} \PYG{n}{metaclass}\PYG{o}{=}\PYG{n}{ListMetaclass}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/0C0036C6C9C488D3AA29C71D2B3DEC9026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{add\PYGZus{}end}\PYG{p}{()} 3 | \PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}END\PYGZsq{}}\PYG{p}{]} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/0D100B7A3CB64CF0124F2FB26EB7068926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{I}\PYG{l+s+s1}{\PYGZsq{}m \PYGZdq{}OK\PYGZdq{}!} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0E1370DDBA66FB9D4C1544ACB9B13E9926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{GET} \PYG{o}{/}\PYG{n}{users}\PYG{o}{/}\PYG{p}{:}\PYG{n}{user}\PYG{o}{/}\PYG{n}{repos} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0E3E5AB4323EF5AB1DA838B3DBD648BE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{p}{(}\PYG{n}{Pdb}\PYG{p}{)} \PYG{n}{q} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0EFB55B3A324D27E46BA7829D26878F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | 4 | \PYG{n}{height} \PYG{o}{=} \PYG{l+m+mf}{1.75} 5 | \PYG{n}{weight} \PYG{o}{=} \PYG{l+m+mf}{80.5} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/0F0FC53E3388B20B8B8F69FBBF9BAC1E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{now}\PYG{p}{()} 3 | \PYG{n}{execute} \PYG{n}{now}\PYG{p}{():} 4 | \PYG{l+m+mi}{2015}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{3}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{25} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/0FC4911699AE5B29148C55095AC84BC226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}hello, world\PYGZsq{}}\PYG{p}{)} 3 | \PYG{n}{hello}\PYG{p}{,} \PYG{n}{world} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/0FDCB99EF1B844AE674E8E7BA220BADF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip} \PYG{n}{install} \PYG{n}{jinja2} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/0FF4E8FBFA4E9A516AECD31C5DF174E526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{int2}\PYG{p}{(}\PYG{n}{x}\PYG{p}{,} \PYG{n}{base}\PYG{o}{=}\PYG{l+m+mi}{2}\PYG{p}{):} 3 | \PYG{k}{return} \PYG{n+nb}{int}\PYG{p}{(}\PYG{n}{x}\PYG{p}{,} \PYG{n}{base}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/10BEABDEA3E04645968E75CEBA95359826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{import} \PYG{n+nn}{re} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/10DC634AA03CA4D7E57B1B99FE5CBB2226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{with} \PYG{n+nb+bp}{self}\PYG{o}{.}\PYG{n}{assertRaises}\PYG{p}{(}\PYG{n+ne}{KeyError}\PYG{p}{):} 3 | \PYG{n}{value} \PYG{o}{=} \PYG{n}{d}\PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}empty\PYGZsq{}}\PYG{p}{]} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/10DEDB5C19879CC8DFFFB1D1A5798FA326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Student}\PYG{p}{(}\PYG{n+nb}{object}\PYG{p}{):} 3 | \PYG{n+nv+vm}{\PYGZus{}\PYGZus{}slots\PYGZus{}\PYGZus{}} \PYG{o}{=} \PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}name\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}age\PYGZsq{}}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/11CE37457B1A5E1E52D00F3C26F8E86D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{person}\PYG{p}{(}\PYG{n}{name}\PYG{p}{,} \PYG{n}{age}\PYG{p}{,} \PYG{n}{city}\PYG{p}{,} \PYG{n}{job}\PYG{p}{):} 3 | 4 | \PYG{k}{pass} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/123D2938E06342935F6A014F4D376A4D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+m+mi}{100} \PYG{o}{+} \PYG{l+m+mi}{200} \PYG{o}{+} \PYG{l+m+mi}{300}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/123F896FC5DF1D707127E0AF3560BF7526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python} \PYG{n}{mydict2}\PYG{o}{.}\PYG{n}{py} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/127AC10A61B76FE7C321FDB097BC9AB126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Timer}\PYG{p}{(}\PYG{n+nb}{object}\PYG{p}{):} 3 | \PYG{k}{def} \PYG{n+nf}{run}\PYG{p}{(}\PYG{n+nb+bp}{self}\PYG{p}{):} 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Start...\PYGZsq{}}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/12A6BC52BA08D86AED60AC90F108EF8E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{app} \PYG{o}{=} \PYG{n}{Application}\PYG{p}{()} 3 | 4 | \PYG{n}{app}\PYG{o}{.}\PYG{n}{master}\PYG{o}{.}\PYG{n}{title}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Hello World\PYGZsq{}}\PYG{p}{)} 5 | 6 | \PYG{n}{app}\PYG{o}{.}\PYG{n}{mainloop}\PYG{p}{()} 7 | \end{Verbatim} 8 | -------------------------------------------------------------------------------- /tex/_minted-gen/12E46D2BC467AAA25AA49CDBE12C1FD226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{start\PYGZus{}response}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}200 OK\PYGZsq{}}\PYG{p}{,} \PYG{p}{[(}\PYG{l+s+s1}{\PYGZsq{}Content\PYGZhy{}Type\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}text/html\PYGZsq{}}\PYG{p}{)])} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/1430D10711F8B07E57947936CF595A3A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}100 + 200 =\PYGZsq{}}\PYG{p}{,} \PYG{l+m+mi}{100} \PYG{o}{+} \PYG{l+m+mi}{200}\PYG{p}{)} 3 | \PYG{l+m+mi}{100} \PYG{o}{+} \PYG{l+m+mi}{200} \PYG{o}{=} \PYG{l+m+mi}{300} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/167394685C1BECE5020803FEEC62E49D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{sudo} \PYG{o}{/}\PYG{n}{etc}\PYG{o}{/}\PYG{n}{init}\PYG{o}{.}\PYG{n}{d}\PYG{o}{/}\PYG{n}{nginx} \PYG{n}{reload} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/16EA140E0390EB18C8D9ED2F4211533426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{t} \PYG{o}{=} \PYG{p}{()} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{t} 4 | \PYG{p}{()} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/19901979C2DBF8D582456EDF57F7B0DE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{k+kn}{import} \PYG{n+nn}{math} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{math}\PYG{o}{.}\PYG{n}{sqrt}\PYG{p}{(}\PYG{l+m+mi}{2}\PYG{p}{)} 4 | \PYG{l+m+mf}{1.4142135623730951} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/19BFACB3237D7E38D30B6FC859BB9BA326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{try}\PYG{o}{...} 3 | \PYG{k}{except}\PYG{p}{:} \PYG{n}{division} \PYG{n}{by} \PYG{n}{zero} 4 | \PYG{k}{finally}\PYG{o}{...} 5 | \PYG{n}{END} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/19D0E605F4C8551B826D693D47F81F8526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k+kn}{import} \PYG{n+nn}{sys} 3 | 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{sys}\PYG{o}{.}\PYG{n}{argv}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/19E8CAD86A70239EE7F404570A56AF4426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{for} \PYG{n}{n} \PYG{o+ow}{in} \PYG{n}{primes}\PYG{p}{():} 3 | \PYG{k}{if} \PYG{n}{n} \PYG{o}{\PYGZlt{}} \PYG{l+m+mi}{1000}\PYG{p}{:} 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{n}\PYG{p}{)} 5 | \PYG{k}{else}\PYG{p}{:} 6 | \PYG{k}{break} 7 | \end{Verbatim} 8 | -------------------------------------------------------------------------------- /tex/_minted-gen/19F00231FA4B55511A3C244D9A14E6CF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{L}\PYG{p}{[}\PYG{l+m+mi}{1}\PYG{p}{:}\PYG{l+m+mi}{3}\PYG{p}{]} 3 | \PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}Sarah\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}Tracy\PYGZsq{}}\PYG{p}{]} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/1A0A4FDDF92CF6F793E8BD9F31DB7F9226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip3} \PYG{n}{install} \PYG{n}{virtualenv} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/1A0A72B28EE90FAAA36517433DAECF0F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{isinstance}\PYG{p}{(}\PYG{n}{c}\PYG{p}{,} \PYG{n}{Animal}\PYG{p}{)} 3 | \PYG{k+kc}{True} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/1A3A058F0D3CEC09BD9DA32382AA22ED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{import} \PYG{n+nn}{unittest} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/1C85A52741DB3D7CF9A167607B1C872026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{b} \PYG{o}{=} \PYG{n}{Animal}\PYG{p}{()} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{isinstance}\PYG{p}{(}\PYG{n}{b}\PYG{p}{,} \PYG{n}{Dog}\PYG{p}{)} 4 | \PYG{k+kc}{False} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/1DF43603764E10FD74A7C7E3EF3FE03226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k+kn}{import} \PYG{n+nn}{sys} 3 | 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{sys}\PYG{o}{.}\PYG{n}{executable}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/1E2FF2B678FFB85480B6560A1CE76B2A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding:utf-8 -*-} 3 | 4 | \PYG{k+kn}{import} \PYG{n+nn}{re} 5 | \PYG{k+kn}{from} \PYG{n+nn}{datetime} \PYG{k+kn}{import} \PYG{n}{datetime}\PYG{p}{,} \PYG{n}{timezone}\PYG{p}{,} \PYG{n}{timedelta} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/1E4A82A649E9E397517330C2BE53D7DF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Host}\PYG{p}{:} \PYG{n}{www}\PYG{o}{.}\PYG{n}{sina}\PYG{o}{.}\PYG{n}{com}\PYG{o}{.}\PYG{n}{cn} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/1F746BCAE22D342DFD990981A1F3B0F826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{classmates}\PYG{p}{[}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{1}\PYG{p}{]} 3 | \PYG{l+s+s1}{\PYGZsq{}Tracy\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/21931F682F32C0F4196730DDD6FAB7C526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{n} \PYG{o}{=} \PYG{l+m+mi}{0} 3 | \PYG{k}{while} \PYG{n}{n} \PYG{o}{\PYGZlt{}} \PYG{l+m+mi}{10}\PYG{p}{:} 4 | \PYG{n}{n} \PYG{o}{=} \PYG{n}{n} \PYG{o}{+} \PYG{l+m+mi}{1} 5 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{n}\PYG{p}{)} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/21DB645B16DFD2DC4A56F132699E0CA226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s} \PYG{o}{=} \PYG{n}{socket}\PYG{o}{.}\PYG{n}{socket}\PYG{p}{(}\PYG{n}{socket}\PYG{o}{.}\PYG{n}{AF\PYGZus{}INET}\PYG{p}{,} \PYG{n}{socket}\PYG{o}{.}\PYG{n}{SOCK\PYGZus{}STREAM}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/22E756C7CD540F0FCF6DAE1DCB72763026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{with} \PYG{n+nb}{open}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}/path/to/file\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}r\PYGZsq{}}\PYG{p}{)} \PYG{k}{as} \PYG{n}{f}\PYG{p}{:} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{f}\PYG{o}{.}\PYG{n}{read}\PYG{p}{())} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/25E916F07769BCB6C9786BF939326BF626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{L2} \PYG{o}{=} \PYG{n+nb}{sorted}\PYG{p}{(}\PYG{n}{L}\PYG{p}{,} \PYG{n}{key}\PYG{o}{=}\PYG{n}{by\PYGZus{}name}\PYG{p}{)} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{L2}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/26333462F5D1C3C41A47D23421B01B1126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{max2} \PYG{o}{=} \PYG{n}{functools}\PYG{o}{.}\PYG{n}{partial}\PYG{p}{(}\PYG{n+nb}{max}\PYG{p}{,} \PYG{l+m+mi}{10}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/276DC3F1AD952B90B6867A0213B8F78026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{p}{(}\PYG{n}{Pdb}\PYG{p}{)} \PYG{n}{p} \PYG{n}{s} 3 | \PYG{l+s+s1}{\PYGZsq{}0\PYGZsq{}} 4 | \PYG{p}{(}\PYG{n}{Pdb}\PYG{p}{)} \PYG{n}{p} \PYG{n}{n} 5 | \PYG{l+m+mi}{0} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/27DFA782E872F8E5569A9DF0304D02B626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f}\PYG{o}{.}\PYG{n}{read}\PYG{p}{()} 3 | \PYG{l+s+s1}{\PYGZsq{}Hello, world!\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/2802326F613A7A855113D8994878E52A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{run\PYGZus{}twice}\PYG{p}{(}\PYG{n}{Tortoise}\PYG{p}{())} 3 | \PYG{n}{Tortoise} \PYG{o+ow}{is} \PYG{n}{running} \PYG{n}{slowly}\PYG{o}{...} 4 | \PYG{n}{Tortoise} \PYG{o+ow}{is} \PYG{n}{running} \PYG{n}{slowly}\PYG{o}{...} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/2AEBE9C86B4EBD98F488A15B5A68A44426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{k}{for} \PYG{n}{ch} \PYG{o+ow}{in} \PYG{l+s+s1}{\PYGZsq{}ABC\PYGZsq{}}\PYG{p}{:} 3 | \PYG{o}{...} \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{ch}\PYG{p}{)} 4 | \PYG{o}{...} 5 | \PYG{n}{A} 6 | \PYG{n}{B} 7 | \PYG{n}{C} 8 | \end{Verbatim} 9 | -------------------------------------------------------------------------------- /tex/_minted-gen/2BB83E4A428F2D68ECCB4C2D989E028326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{chmod} \PYG{n}{a}\PYG{o}{+}\PYG{n}{x} \PYG{n}{hello}\PYG{o}{.}\PYG{n}{py} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/2BC1744A6374BFE76B915E0EE471DAAD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{abs}\PYG{p}{(}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{10}\PYG{p}{)} 3 | \PYG{l+m+mi}{10} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/2BDC642A392797C012C91E82CDDDCF8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{n}{test}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{o}{/}\PYG{n}{Users}\PYG{o}{/}\PYG{n}{michael}\PYG{o}{/}\PYG{n}{workspace}\PYG{o}{/}\PYG{n}{testing} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/2C7C77DD324DD3C0E66D11EB2D69008B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{x} \PYG{o}{=} \PYG{n}{balance} \PYG{o}{+} \PYG{n}{n} 3 | \PYG{n}{balance} \PYG{o}{=} \PYG{n}{x} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/2D7324A98B6063C952887A451A54F31426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{L}\PYG{p}{[:]} 3 | \PYG{p}{[}\PYG{l+m+mi}{0}\PYG{p}{,} \PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{,} \PYG{l+m+mi}{3}\PYG{p}{,} \PYG{o}{...}\PYG{p}{,} \PYG{l+m+mi}{99}\PYG{p}{]} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/2D83ACAF106B15ABA98D3B281FDA290326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k}{def} \PYG{n+nf}{trim}\PYG{p}{(}\PYG{n}{s}\PYG{p}{):} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/2F13CF3FDCF8B0FEC0F04246D02D3BA626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{enroll}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Sarah\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}F\PYGZsq{}}\PYG{p}{)} 3 | \PYG{n}{name}\PYG{p}{:} \PYG{n}{Sarah} 4 | \PYG{n}{gender}\PYG{p}{:} \PYG{n}{F} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/2FF6F231A0D360F9998D02D9AC2B599126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{add\PYGZus{}end}\PYG{p}{()} 3 | \PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}END\PYGZsq{}}\PYG{p}{]} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{add\PYGZus{}end}\PYG{p}{()} 5 | \PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}END\PYGZsq{}}\PYG{p}{]} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/318775081E8CB7BA717158086C41C4E826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{isinstance}\PYG{p}{(}\PYG{n}{d}\PYG{p}{,} \PYG{n}{Husky}\PYG{p}{)} 3 | \PYG{k+kc}{False} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/33047BC4DD3180B0003C67AED48759F426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{if} \PYG{n}{age} \PYG{o}{\PYGZgt{}=} \PYG{l+m+mi}{18}\PYG{p}{:} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}adult\PYGZsq{}}\PYG{p}{)} 4 | \PYG{k}{else}\PYG{p}{:} 5 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}teenager\PYGZsq{}}\PYG{p}{)} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/338962525571C999F29DA8E28AE5B15D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{a}\PYG{p}{,} \PYG{n}{b} \PYG{o}{=} \PYG{n}{b}\PYG{p}{,} \PYG{n}{a} \PYG{o}{+} \PYG{n}{b} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/3463DD9473350FCB5411CAE5C1835F2126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding:utf-8 -*-} 3 | 4 | \PYG{k+kn}{from} \PYG{n+nn}{xml.parsers.expat} \PYG{k+kn}{import} \PYG{n}{ParserCreate} 5 | \PYG{k+kn}{from} \PYG{n+nn}{urllib} \PYG{k+kn}{import} \PYG{n}{request} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/34ABB8ACD6E7C939290910E2999D735C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{speed} \PYG{o}{=} \PYG{l+m+mi}{0} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/35898D33D626827E52A21B12842E187726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{calc\PYGZus{}md5}\PYG{p}{(}\PYG{n}{password}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/35B4213F35965D0CDB081FDDEED45CD026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f} \PYG{o}{=} \PYG{n+nb}{abs} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f}\PYG{p}{(}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{10}\PYG{p}{)} 4 | \PYG{l+m+mi}{10} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/35BDE018100A214BA9A47718A0B6414826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{x} \PYG{o}{=} \PYG{l+s+sa}{b}\PYG{l+s+s1}{\PYGZsq{}ABC\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/3680286B4A807419A680C9727DC3AFAB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}hello, world\PYGZsq{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/3892F3F184B137CD11447589899DBD0626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{\PYGZus{}odd\PYGZus{}iter}\PYG{p}{():} 3 | \PYG{n}{n} \PYG{o}{=} \PYG{l+m+mi}{1} 4 | \PYG{k}{while} \PYG{k+kc}{True}\PYG{p}{:} 5 | \PYG{n}{n} \PYG{o}{=} \PYG{n}{n} \PYG{o}{+} \PYG{l+m+mi}{2} 6 | \PYG{k}{yield} \PYG{n}{n} 7 | \end{Verbatim} 8 | -------------------------------------------------------------------------------- /tex/_minted-gen/38E92CEB359D071CF0D467B1467B987226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s} \PYG{o}{=} \PYG{l+s+s1}{\PYGZsq{}0\PYGZsq{}} 3 | \PYG{n}{n} \PYG{o}{=} \PYG{n+nb}{int}\PYG{p}{(}\PYG{n}{s}\PYG{p}{)} 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+m+mi}{10} \PYG{o}{/} \PYG{n}{n}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/3A01914C2DBC4111E2F360330694C49226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{for} \PYG{n}{x} \PYG{o+ow}{in} \PYG{p}{[}\PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{,} \PYG{l+m+mi}{3}\PYG{p}{,} \PYG{l+m+mi}{4}\PYG{p}{,} \PYG{l+m+mi}{5}\PYG{p}{]:} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/3AE0122F12A81D1B4FAC93830E67BBF126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Traceback} \PYG{p}{(}\PYG{n}{most} \PYG{n}{recent} \PYG{n}{call} \PYG{n}{last}\PYG{p}{):} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/3BC95236454243A454EF96F9B1E7E8D926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{name} 3 | \PYG{l+s+s1}{\PYGZsq{}Michael\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/3C1069B0694CDE6677F91A549BFC1E9026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{json}\PYG{o}{.}\PYG{n}{dumps}\PYG{p}{(}\PYG{n}{s}\PYG{p}{,} \PYG{n}{default}\PYG{o}{=}\PYG{k}{lambda} \PYG{n}{obj}\PYG{p}{:} \PYG{n}{obj}\PYG{o}{.}\PYG{n+nv+vm}{\PYGZus{}\PYGZus{}dict\PYGZus{}\PYGZus{}}\PYG{p}{))} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/3CDD4617CC319DE18BAFA6232A2EC4CD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}\PYGZsq{}\PYGZsq{}line1} 3 | \PYG{l+s+s1}{... line2} 4 | \PYG{l+s+s1}{... line3\PYGZsq{}\PYGZsq{}\PYGZsq{}}\PYG{p}{)} 5 | \PYG{n}{line1} 6 | \PYG{n}{line2} 7 | \PYG{n}{line3} 8 | \end{Verbatim} 9 | -------------------------------------------------------------------------------- /tex/_minted-gen/3D0B58E380E21BE3A3025FE88194942826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+s+s1}{\PYGZsq{}/Library/Fonts/Arial.ttf\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/3D952C5518B4541F8438EECE82AB684D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{hello}\PYG{o}{.}\PYG{n}{test}\PYG{p}{()} 3 | \PYG{n}{Hello}\PYG{p}{,} \PYG{n}{world}\PYG{err}{!} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/3F5A94CC224484C111CDE1CDE767E7EE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nd}{@get}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}/api/comments\PYGZsq{}}\PYG{p}{)} 3 | \PYG{k}{def} \PYG{n+nf}{api\PYGZus{}comments}\PYG{p}{(}\PYG{o}{*}\PYG{p}{,} \PYG{n}{page}\PYG{o}{=}\PYG{l+s+s1}{\PYGZsq{}1\PYGZsq{}}\PYG{p}{):} 4 | \PYG{k}{pass} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/3F5E18A1D2AA25EB5FB05292D04161A726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+s+s1}{\PYGZsq{}}\PYG{l+s+se}{\PYGZbs{}u4e2d\PYGZbs{}u6587}\PYG{l+s+s1}{\PYGZsq{}} 3 | \PYG{l+s+s1}{\PYGZsq{}中文\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/3F746CB310964AF4B88713C8EB4ADA1126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Dog}\PYG{p}{(}\PYG{n}{Mammal}\PYG{p}{,} \PYG{n}{Runnable}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/418D9936EF67655DE707A55C11859FBD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Chain}\PYG{p}{()}\PYG{o}{.}\PYG{n}{users}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}michael\PYGZsq{}}\PYG{p}{)}\PYG{o}{.}\PYG{n}{repos} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/425BF6A8251D97345CB1197EAEB163C226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | 4 | \PYG{k}{def} \PYG{n+nf}{triangles}\PYG{p}{():} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/45711CA8E6EA0DA32191FBBB6DF0160526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{awesome}\PYG{o}{\PYGZhy{}}\PYG{n}{python}\PYG{o}{\PYGZhy{}}\PYG{n}{webapp}\PYG{o}{/} 3 | \PYG{o}{+\PYGZhy{}} \PYG{n}{fabfile}\PYG{o}{.}\PYG{n}{py} 4 | \PYG{o}{+\PYGZhy{}} \PYG{n}{www}\PYG{o}{/} 5 | \PYG{o}{+\PYGZhy{}} \PYG{o}{...} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/482EA939E20142693C65665E361EFEC126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+s+s1}{\PYGZsq{}growth rate: }\PYG{l+s+si}{\PYGZpc{}d}\PYG{l+s+s1}{ }\PYG{l+s+si}{\PYGZpc{}\PYGZpc{}}\PYG{l+s+s1}{\PYGZsq{}} \PYG{o}{\PYGZpc{}} \PYG{l+m+mi}{7} 3 | \PYG{l+s+s1}{\PYGZsq{}growth rate: 7 \PYGZpc{}\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/49239C951AD1F1AA146E62D077D54CD326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{d26a53750bc40b38b65a520292f69306} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/4952EF0471FEA59724B03640A6DEE06D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{Chain}\PYG{p}{()}\PYG{o}{.}\PYG{n}{status}\PYG{o}{.}\PYG{n}{user}\PYG{o}{.}\PYG{n}{timeline}\PYG{o}{.}\PYG{n}{list} 3 | \PYG{l+s+s1}{\PYGZsq{}/status/user/timeline/list\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/49B1FF6647693C8D72C36DD25964189E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k}{def} \PYG{n+nf}{move}\PYG{p}{(}\PYG{n}{n}\PYG{p}{,} \PYG{n}{a}\PYG{p}{,} \PYG{n}{b}\PYG{p}{,} \PYG{n}{c}\PYG{p}{):} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/4A265489A43995713B70CE047C0899DE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python} \PYG{n}{mydict\PYGZus{}test}\PYG{o}{.}\PYG{n}{py} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/4A7A8E9C64F85D014374D20B2CBE3C6F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nd}{@log}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}execute\PYGZsq{}}\PYG{p}{)} 3 | \PYG{k}{def} \PYG{n+nf}{now}\PYG{p}{():} 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}2015\PYGZhy{}3\PYGZhy{}25\PYGZsq{}}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/4A83E1F34CD603C080C0361E0D8D940A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{name} \PYG{o}{=} \PYG{n+nb}{input}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}please enter your name: \PYGZsq{}}\PYG{p}{)} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}hello,\PYGZsq{}}\PYG{p}{,} \PYG{n}{name}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/4BA5DB83F61E80F7393E3661B29EB0B126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}}\PYG{n}{pip3} \PYG{n}{install} \PYG{n}{aiohttp} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/4CE1E3585F67C64C01311A66F2D1B47926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+s+s1}{\PYGZsq{}\PYGZca{}(0[1\PYGZhy{}9]|1[0\PYGZhy{}2]|[0\PYGZhy{}9])\PYGZhy{}(0[1\PYGZhy{}9]|1[0\PYGZhy{}9]|2[0\PYGZhy{}9]|3[0\PYGZhy{}1]|[0\PYGZhy{}9])\PYGZdl{}\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/4D938C734D41C001AC6E209AFA598DBF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{import} \PYG{n+nn}{time}\PYG{o}{,} \PYG{n+nn}{functools} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/4E62F3EE4C109A94AFCAC1B25289A0F426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{name} \PYG{o}{=} \PYG{n+nb}{input}\PYG{p}{()} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}hello,\PYGZsq{}}\PYG{p}{,} \PYG{n}{name}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/4E97C68BBF968A8D485DC361E816530526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Animal} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 3 | \PYG{n}{Animal} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/4F141F509AD1A9FC6453BD2DD65603DC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Michael} 3 | \PYG{n}{Bob} 4 | \PYG{n}{Tracy} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/51A90B8582BA14E485A5A32A17F6644226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+m+mi}{2015}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{04}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{19} \PYG{l+m+mi}{12}\PYG{p}{:}\PYG{l+m+mi}{20}\PYG{p}{:}\PYG{l+m+mi}{00} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/5237961A9369BB9EE5CA7B62138CEE3926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{sum} \PYG{o}{=} \PYG{n+nb}{getattr}\PYG{p}{(}\PYG{n}{obj}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}x\PYGZsq{}}\PYG{p}{)} \PYG{o}{+} \PYG{n+nb}{getattr}\PYG{p}{(}\PYG{n}{obj}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}y\PYGZsq{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/524B65E48361C225691B71C7FC53645D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{classmates} \PYG{o}{=} \PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Michael\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}Bob\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}Tracy\PYGZsq{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/52CACAE3EDE6D6A4C41D3FD7AC03F8B726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{SELECT} \PYG{o}{*} \PYG{n}{FROM} \PYG{n}{classes} \PYG{n}{WHERE} \PYG{n}{grade\PYGZus{}id} \PYG{o}{=} \PYG{l+s+s1}{\PYGZsq{}1\PYGZsq{}}\PYG{p}{;} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/530EB4DD51F54462042D1E507B0532C226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+s+s1}{\PYGZsq{}数据库类型+数据库驱动名称://用户名:口令@机器地址:端口号/数据库名\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/547027297B53D0220A4B19A8C250B9C426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{File} \PYG{l+s+s2}{\PYGZdq{}err.py\PYGZdq{}}\PYG{p}{,} \PYG{n}{line} \PYG{l+m+mi}{6}\PYG{p}{,} \PYG{o+ow}{in} \PYG{n}{bar} 3 | \PYG{k}{return} \PYG{n}{foo}\PYG{p}{(}\PYG{n}{s}\PYG{p}{)} \PYG{o}{*} \PYG{l+m+mi}{2} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/55FC2D0E96448E550A7E03EE07B27CA626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{MyUDPServer}\PYG{p}{(}\PYG{n}{UDPServer}\PYG{p}{,} \PYG{n}{ThreadingMixIn}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/57172818C6BF16DCEF2B51D6CD428B0B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{JAN} \PYG{o}{=} \PYG{l+m+mi}{1} 3 | \PYG{n}{FEB} \PYG{o}{=} \PYG{l+m+mi}{2} 4 | \PYG{n}{MAR} \PYG{o}{=} \PYG{l+m+mi}{3} 5 | \PYG{o}{...} 6 | \PYG{n}{NOV} \PYG{o}{=} \PYG{l+m+mi}{11} 7 | \PYG{n}{DEC} \PYG{o}{=} \PYG{l+m+mi}{12} 8 | \end{Verbatim} 9 | -------------------------------------------------------------------------------- /tex/_minted-gen/571E0C35F0C588FB78B90FE4175427B026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nd}{@contextmanager} 3 | \PYG{k}{def} \PYG{n+nf}{closing}\PYG{p}{(}\PYG{n}{thing}\PYG{p}{):} 4 | \PYG{k}{try}\PYG{p}{:} 5 | \PYG{k}{yield} \PYG{n}{thing} 6 | \PYG{k}{finally}\PYG{p}{:} 7 | \PYG{n}{thing}\PYG{o}{.}\PYG{n}{close}\PYG{p}{()} 8 | \end{Verbatim} 9 | -------------------------------------------------------------------------------- /tex/_minted-gen/59F140C29E292ABD6C35AC81A44FBC6726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{int2}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}1000000\PYGZsq{}}\PYG{p}{,} \PYG{n}{base}\PYG{o}{=}\PYG{l+m+mi}{10}\PYG{p}{)} 3 | \PYG{l+m+mi}{1000000} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/5ABFE8E807CD8E38F8A353F89AF9C30D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Dog} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 3 | \PYG{n}{Cat} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/5B239DCA1E30F5B4CDBEDF4B622C051B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{from} \PYG{n+nn}{functools} \PYG{k+kn}{import} \PYG{n}{reduce} 4 | 5 | \PYG{k}{def} \PYG{n+nf}{str2float}\PYG{p}{(}\PYG{n}{s}\PYG{p}{):} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/5B30061271B2B7F9EA7393DA00F9105426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{s}\PYG{o}{.}\PYG{n}{remove}\PYG{p}{(}\PYG{l+m+mi}{4}\PYG{p}{)} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{s} 4 | \PYG{p}{\PYGZob{}}\PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{,} \PYG{l+m+mi}{3}\PYG{p}{\PYGZcb{}} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/5C30BFC7649F79AC0737CC3DFBD2525A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+m+mi}{0} 3 | \PYG{err}{▲} 4 | \PYG{err}{│} 5 | \PYG{l+m+mi}{0} \PYG{o}{\PYGZlt{}}\PYG{err}{───┼───}\PYG{o}{\PYGZgt{}} \PYG{l+m+mi}{65535} 6 | \PYG{err}{│} 7 | \PYG{err}{▼} 8 | \PYG{l+m+mi}{65535} 9 | \end{Verbatim} 10 | -------------------------------------------------------------------------------- /tex/_minted-gen/5C3AB7E553B274D272EE3D7CC13BEE2226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+m+mi}{2015}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{04}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{19} \PYG{l+m+mi}{04}\PYG{p}{:}\PYG{l+m+mi}{20}\PYG{p}{:}\PYG{l+m+mi}{00} \PYG{n}{UTC}\PYG{o}{+}\PYG{l+m+mi}{0}\PYG{p}{:}\PYG{l+m+mi}{00} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/5CD745C1EFD89583291270823275201F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{r} \PYG{o}{=} \PYG{n+nb}{abs}\PYG{p}{(}\PYG{l+m+mi}{6}\PYG{p}{)} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{r} 4 | \PYG{l+m+mi}{6} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/5DDE581D58BBF80F37CB2053EC43961426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}包含中文的str\PYGZsq{}}\PYG{p}{)} 3 | \PYG{n}{包含中文的str} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/5E2BE7C1D152ECB4DD5D9A2CAA693A9826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{from} \PYG{n+nn}{urllib} \PYG{k+kn}{import} \PYG{n}{request} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/5F836DA3AC6B4B07170CF504EE9606D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+m+mi}{200} \PYG{n}{OK} 3 | \PYG{n}{Header1}\PYG{p}{:} \PYG{n}{Value1} 4 | \PYG{n}{Header2}\PYG{p}{:} \PYG{n}{Value2} 5 | \PYG{n}{Header3}\PYG{p}{:} \PYG{n}{Value3} 6 | 7 | \PYG{n}{body} \PYG{n}{data} \PYG{n}{goes} \PYG{n}{here}\PYG{o}{...} 8 | \end{Verbatim} 9 | -------------------------------------------------------------------------------- /tex/_minted-gen/62DE6A534376041D06D8E42E856C625126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{user}\PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}id\PYGZsq{}}\PYG{p}{]} 3 | \PYG{l+m+mi}{123} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{user}\PYG{o}{.}\PYG{n}{id} 5 | \PYG{l+m+mi}{123} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/632AC9DC20AD60FA4E6EAEBDE821845A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Dog}\PYG{p}{(}\PYG{n}{Animal}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | 5 | \PYG{k}{class} \PYG{n+nc}{Cat}\PYG{p}{(}\PYG{n}{Animal}\PYG{p}{):} 6 | \PYG{k}{pass} 7 | \end{Verbatim} 8 | -------------------------------------------------------------------------------- /tex/_minted-gen/641A5E60F034DBCF18352C8923C82A7726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k+kn}{import} \PYG{n+nn}{sys} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/65C9984DF8C32E5219DA29E5475972BA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{calc}\PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{)} 3 | \PYG{l+m+mi}{5} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{calc}\PYG{p}{()} 5 | \PYG{l+m+mi}{0} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/673D1124906E49A0F8382BB54D10564326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{MyTCPServer}\PYG{p}{(}\PYG{n}{TCPServer}\PYG{p}{,} \PYG{n}{CoroutineMixIn}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/68AA92FE0B18DD8D25D115D0EC00485926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+m+mi}{10} \PYG{o}{\PYGZpc{}} \PYG{l+m+mi}{3} 3 | \PYG{l+m+mi}{1} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/69F34C50C64D1059F0E3DCC5699092F126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+ne}{ZeroDivisionError}\PYG{p}{:} \PYG{n}{integer} \PYG{n}{division} \PYG{o+ow}{or} \PYG{n}{modulo} \PYG{n}{by} \PYG{n}{zero} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/6A84C51E8E6CBDC88668BA6041F8B65226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Student}\PYG{p}{(}\PYG{n+nb}{object}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/6BB0F7DED801D390F30CFF3B59B5D21C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | 4 | \PYG{n}{n1} \PYG{o}{=} \PYG{l+m+mi}{255} 5 | \PYG{n}{n2} \PYG{o}{=} \PYG{l+m+mi}{1000} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/6D1404570DED1B20FAE3A694A94774B226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip} \PYG{n}{install} \PYG{n}{flask} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/6E672175DBA7F75D07DF7BAB1B0DC97B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{a} \PYG{o}{=} \PYG{n+nb}{abs} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{a}\PYG{p}{(}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{1}\PYG{p}{)} 4 | \PYG{l+m+mi}{1} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/6EC9F0903AF9AE90A67CC936688A8F8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{\PYGZus{}not\PYGZus{}divisible}\PYG{p}{(}\PYG{n}{n}\PYG{p}{):} 3 | \PYG{k}{return} \PYG{k}{lambda} \PYG{n}{x}\PYG{p}{:} \PYG{n}{x} \PYG{o}{\PYGZpc{}} \PYG{n}{n} \PYG{o}{\PYGZgt{}} \PYG{l+m+mi}{0} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/6F12BAEB2BAB1812412222874631E40226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{C}\PYG{p}{:}\PYGZbs{}\PYG{n}{Workspace}\PYG{o}{\PYGZgt{}} \PYG{n}{python} \PYG{n}{hello}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{n}{please} \PYG{n}{enter} \PYG{n}{your} \PYG{n}{name}\PYG{p}{:} \PYG{n}{Michael} 4 | \PYG{n}{hello}\PYG{p}{,} \PYG{n}{Michael} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/6FB064D4760A509CDCD83C4D3D8A05C626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{p} \PYG{o}{=} \PYG{n}{Pool}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/70FD42DA2B7E1F6FF8D31EC0DB63BD9926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+m+mi}{100} \PYG{o}{+} \PYG{l+m+mi}{200} \PYG{o}{+} \PYG{l+m+mi}{300} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/712A18A2D553F6E75341FFEB10F4DBD326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+s+s1}{\PYGZsq{}Thomas\PYGZsq{}} \PYG{o+ow}{in} \PYG{n}{d} 3 | \PYG{k+kc}{False} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/7156BC1709798215E9C9FDD7CEACBF1726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{t} \PYG{o}{=} \PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{,)} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{t} 4 | \PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{,)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/71641E4EB6D7D9AE1825A31B8B07E2B026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Student}\PYG{p}{(}\PYG{n+nb}{object}\PYG{p}{):} 3 | \PYG{n}{name} \PYG{o}{=} \PYG{l+s+s1}{\PYGZsq{}Student\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/71EE617A9E78DF4A3ABFB53D78DCF88B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{C}\PYG{p}{:}\PYGZbs{}\PYG{n}{work}\PYG{o}{\PYGZgt{}}\PYG{n}{python} \PYG{n}{calc}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{l+m+mi}{600} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/7282FCACD0A7BE9201AE0465218BBE8A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{p}{\PYGZob{}}\PYG{o}{\PYGZpc{}} \PYG{n}{block} \PYG{n}{content} \PYG{o}{\PYGZpc{}}\PYG{p}{\PYGZcb{}} 3 | \PYG{o}{...} 4 | \PYG{p}{\PYGZob{}}\PYG{o}{\PYGZpc{}} \PYG{n}{endblock} \PYG{o}{\PYGZpc{}}\PYG{p}{\PYGZcb{}} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/72E492326A279B663EC2A8C21B9889C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{n}{test}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{o}{/}\PYG{n}{usr}\PYG{o}{/}\PYG{n}{local}\PYG{o}{/}\PYG{n}{opt}\PYG{o}{/}\PYG{n}{python3}\PYG{o}{/}\PYG{n+nb}{bin}\PYG{o}{/}\PYG{n}{python3}\PYG{o}{.}\PYG{l+m+mi}{4} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/73D54E4A23503EC905CA84CEB938071426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Circle} \PYG{o}{=} \PYG{n}{namedtuple}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Circle\PYGZsq{}}\PYG{p}{,} \PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}x\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}y\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}r\PYGZsq{}}\PYG{p}{])} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/74700269AF167200F3220FFDE50BB6D926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s}\PYG{o}{.}\PYG{n}{listen}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{)} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Waiting for connection...\PYGZsq{}}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/7596D22912933EADEDB438C47A6D18E926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{nop}\PYG{p}{():} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/76BEA5804396F8968675219BC5017E9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{import} \PYG{n+nn}{itertools} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/76D0901FC66B8E9053B56358A6E5F06126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+ne}{IOError}\PYG{p}{:} \PYG{n}{cannot} \PYG{n+nb}{open} \PYG{n}{resource} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/77F79D7ADA53BED4AE0FB6D524436F4426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{if} \PYG{n+nv+vm}{\PYGZus{}\PYGZus{}name\PYGZus{}\PYGZus{}} \PYG{o}{==} \PYG{l+s+s1}{\PYGZsq{}\PYGZus{}\PYGZus{}main\PYGZus{}\PYGZus{}\PYGZsq{}}\PYG{p}{:} 3 | \PYG{k+kn}{import} \PYG{n+nn}{doctest} 4 | \PYG{n}{doctest}\PYG{o}{.}\PYG{n}{testmod}\PYG{p}{()} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/782C331FDC8C3B61756624BEDCE4C67626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{t} \PYG{o}{=} \PYG{p}{(}\PYG{n}{b}\PYG{p}{,} \PYG{n}{a} \PYG{o}{+} \PYG{n}{b}\PYG{p}{)} \PYG{c+c1}{\PYGZsh{} t是一个tuple} 3 | \PYG{n}{a} \PYG{o}{=} \PYG{n}{t}\PYG{p}{[}\PYG{l+m+mi}{0}\PYG{p}{]} 4 | \PYG{n}{b} \PYG{o}{=} \PYG{n}{t}\PYG{p}{[}\PYG{l+m+mi}{1}\PYG{p}{]} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/785EAE974BB52B554CA605D89C2403B826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{if} \PYG{n}{x}\PYG{p}{:} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}True\PYGZsq{}}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/786BBDA1679DE559D17E3707D628B09426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{set} \PYG{n}{q}\PYG{o}{=}\PYG{n}{mx} 3 | \PYG{n}{python}\PYG{o}{.}\PYG{n}{org} 4 | \PYG{n}{exit} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/78720ADB0202907AA13824277B4334C026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{len}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}ABC\PYGZsq{}}\PYG{p}{)} 3 | \PYG{l+m+mi}{3} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{len}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}中文\PYGZsq{}}\PYG{p}{)} 5 | \PYG{l+m+mi}{2} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/793A3E2A6490506E83AFEB77FEAB2D5426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{import} \PYG{n+nn}{base64} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/79B22BFA6DB20AA200B018A5E333097126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{user}\PYG{o}{.}\PYG{n}{save}\PYG{p}{()} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/7C2D39B5D6FB36781B0B4DCF5B3A060A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | 4 | \PYG{k+kn}{import} \PYG{n+nn}{math} 5 | 6 | \PYG{k}{def} \PYG{n+nf}{quadratic}\PYG{p}{(}\PYG{n}{a}\PYG{p}{,} \PYG{n}{b}\PYG{p}{,} \PYG{n}{c}\PYG{p}{):} 7 | \end{Verbatim} 8 | -------------------------------------------------------------------------------- /tex/_minted-gen/838B2227A0AC5D493279E92B1907EE7F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{o}{\PYGZhy{}\PYGZhy{}}\PYG{n}{version} 3 | \PYG{n}{Python} \PYG{l+m+mf}{3.7}\PYG{o}{.}\PYG{l+m+mi}{0} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/8438E7708BC8E1C53ABC77798DC18C1926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip} \PYG{n}{install} \PYG{n}{chardet} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/853267828B7A7F1ED29ED7D5D6253A6726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{isinstance}\PYG{p}{(}\PYG{n}{d}\PYG{p}{,} \PYG{n}{Dog}\PYG{p}{)} \PYG{o+ow}{and} \PYG{n+nb}{isinstance}\PYG{p}{(}\PYG{n}{d}\PYG{p}{,} \PYG{n}{Animal}\PYG{p}{)} 3 | \PYG{k+kc}{True} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/8561911FC0FE8066B1E533CC490DAD9426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{list}\PYG{p}{(}\PYG{n+nb}{range}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{))} 3 | \PYG{p}{[}\PYG{l+m+mi}{0}\PYG{p}{,} \PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{,} \PYG{l+m+mi}{3}\PYG{p}{,} \PYG{l+m+mi}{4}\PYG{p}{]} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/860A4F115F6F130349608F723CEF695826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip} \PYG{n}{install} \PYG{n}{sqlalchemy} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/8785E642BA6404446B8FBA15D3DC048F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{if} \PYG{n+nv+vm}{\PYGZus{}\PYGZus{}name\PYGZus{}\PYGZus{}} \PYG{o}{==} \PYG{l+s+s1}{\PYGZsq{}\PYGZus{}\PYGZus{}main\PYGZus{}\PYGZus{}\PYGZsq{}}\PYG{p}{:} 3 | \PYG{n}{unittest}\PYG{o}{.}\PYG{n}{main}\PYG{p}{()} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/8881A0F2992DE420AD16F0AA42F435FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{yield from} \PYG{n}{user}\PYG{o}{.}\PYG{n}{save}\PYG{p}{()} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/8AB0C2C6935C092E7F777A0775F203BE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb+bp}{self}\PYG{o}{.}\PYG{n}{assertEqual}\PYG{p}{(}\PYG{n+nb}{abs}\PYG{p}{(}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{1}\PYG{p}{),} \PYG{l+m+mi}{1}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/8CACD01ACAFA3010996BDDDE84D32B3526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip3} \PYG{n}{install} \PYG{n}{watchdog} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/8D55DD29F334770ECA186DD552B04A5626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{int} \PYG{n}{a} \PYG{o}{=} \PYG{l+m+mi}{123}\PYG{p}{;} 3 | \PYG{n}{a} \PYG{o}{=} \PYG{l+s+s2}{\PYGZdq{}ABC\PYGZdq{}}\PYG{p}{;} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/8EFF610CA18697F0E4D1CE1AEC27771726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{len}\PYG{p}{(}\PYG{n}{classmates}\PYG{p}{)} 3 | \PYG{l+m+mi}{3} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/8F048EC16ED0CFD987A8FCB13F3F6CFA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Content}\PYG{o}{\PYGZhy{}}\PYG{n}{Type}\PYG{p}{:} \PYG{n}{text}\PYG{o}{/}\PYG{n}{html} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/8F4B9C57056A0FEDD74AF87BF751876426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Michael}\PYG{p}{,}\PYG{l+m+mi}{99} 3 | \PYG{n}{Bob}\PYG{p}{,}\PYG{l+m+mi}{85} 4 | \PYG{n}{Bart}\PYG{p}{,}\PYG{l+m+mi}{59} 5 | \PYG{n}{Lisa}\PYG{p}{,}\PYG{l+m+mi}{87} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/8FC657A379F15DCC9F87AFEE7C30675426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{x} \PYG{o}{=} \PYG{n+nb}{abs}\PYG{p}{(}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{10}\PYG{p}{)} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{x} 4 | \PYG{l+m+mi}{10} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/9161A7FBA077AE63342EC5D345576BF926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}\PYGZsq{}\PYGZsq{}line1} 3 | \PYG{l+s+s1}{line2} 4 | \PYG{l+s+s1}{line3\PYGZsq{}\PYGZsq{}\PYGZsq{}}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/9358F2568F3316FE7E78A4FA7707C41426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{a} \PYG{o}{=} \PYG{l+m+mi}{1} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/938E8EEA4C1C51C852F63B5058ADC6A726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{isinstance}\PYG{p}{(}\PYG{n}{h}\PYG{p}{,} \PYG{n}{Animal}\PYG{p}{)} 3 | \PYG{k+kc}{True} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/949F20E1E83E8791475C9A3E9000B57726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f}\PYG{p}{()} 3 | \PYG{l+m+mi}{25} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/94A1D594B81479CA9DE432A3FFF485F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{t\PYGZus{}007} \PYG{o}{=} \PYG{l+s+s1}{\PYGZsq{}T007\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/94A737FFCAEB9E33CE439D448BA95E1626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{int2} \PYG{o}{=} \PYG{n}{functools}\PYG{o}{.}\PYG{n}{partial}\PYG{p}{(}\PYG{n+nb}{int}\PYG{p}{,} \PYG{n}{base}\PYG{o}{=}\PYG{l+m+mi}{2}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/94F32C29FD7225488D4CA7F670BFC4AB26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{a} \PYG{o}{=} \PYG{n+nb}{list}\PYG{p}{()} \PYG{c+c1}{\PYGZsh{} a是list类型} 3 | \PYG{n}{b} \PYG{o}{=} \PYG{n}{Animal}\PYG{p}{()} \PYG{c+c1}{\PYGZsh{} b是Animal类型} 4 | \PYG{n}{c} \PYG{o}{=} \PYG{n}{Dog}\PYG{p}{()} \PYG{c+c1}{\PYGZsh{} c是Dog类型} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/95859521E6D770D68468C13B7201B2D626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{sum} \PYG{o}{=} \PYG{n}{obj}\PYG{o}{.}\PYG{n}{x} \PYG{o}{+} \PYG{n}{obj}\PYG{o}{.}\PYG{n}{y} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/95E7DA7C12861346984B8CDA16CD4B4926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{now}\PYG{o}{.}\PYG{n+nv+vm}{\PYGZus{}\PYGZus{}name\PYGZus{}\PYGZus{}} 3 | \PYG{l+s+s1}{\PYGZsq{}wrapper\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/9657D00FB84F1549509127EF3303C0AA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{mycompany} 3 | \PYG{err}{├─} \PYG{n+nf+fm}{\PYGZus{}\PYGZus{}init\PYGZus{}\PYGZus{}}\PYG{o}{.}\PYG{n}{py} 4 | \PYG{err}{├─} \PYG{n}{abc}\PYG{o}{.}\PYG{n}{py} 5 | \PYG{err}{└─} \PYG{n}{xyz}\PYG{o}{.}\PYG{n}{py} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/9827FF2C8672206D17296BA576E3C3C126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{n}{use\PYGZus{}chainmap}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{n}{color}\PYG{o}{=}\PYG{n}{red} 4 | \PYG{n}{user}\PYG{o}{=}\PYG{n}{guest} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/99EC152B7754DC5B29C8D2DEAB9289D126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{run\PYGZus{}twice}\PYG{p}{(}\PYG{n}{Cat}\PYG{p}{())} 3 | \PYG{n}{Cat} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 4 | \PYG{n}{Cat} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/9ADC7903EFDC7F74542BD2B4510CE95F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{add}\PYG{p}{(}\PYG{n}{x}\PYG{p}{,} \PYG{n}{y}\PYG{p}{,} \PYG{n}{f}\PYG{p}{):} 3 | \PYG{k}{return} \PYG{n}{f}\PYG{p}{(}\PYG{n}{x}\PYG{p}{)} \PYG{o}{+} \PYG{n}{f}\PYG{p}{(}\PYG{n}{y}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/9C50BDEF32984BF4F0907549CC7727B226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{with} \PYG{n+nb+bp}{self}\PYG{o}{.}\PYG{n}{assertRaises}\PYG{p}{(}\PYG{n+ne}{AttributeError}\PYG{p}{):} 3 | \PYG{n}{value} \PYG{o}{=} \PYG{n}{d}\PYG{o}{.}\PYG{n}{empty} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/9C601E975B91447FF81D5DEF4E17731926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{d}\PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}Adam\PYGZsq{}}\PYG{p}{]} \PYG{o}{=} \PYG{l+m+mi}{67} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{d}\PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}Adam\PYGZsq{}}\PYG{p}{]} 4 | \PYG{l+m+mi}{67} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/9C76ACD7A795A46F6CCA3FAEAD6F12CE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{bart}\PYG{o}{.}\PYG{n}{name} \PYG{o}{=} \PYG{l+s+s1}{\PYGZsq{}Bart Simpson\PYGZsq{}} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{bart}\PYG{o}{.}\PYG{n}{name} 4 | \PYG{l+s+s1}{\PYGZsq{}Bart Simpson\PYGZsq{}} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/9D548857402BA7C1BB60527CECB5905C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{File} \PYG{l+s+s2}{\PYGZdq{}err.py\PYGZdq{}}\PYG{p}{,} \PYG{n}{line} \PYG{l+m+mi}{9}\PYG{p}{,} \PYG{o+ow}{in} \PYG{n}{main} 3 | \PYG{n}{bar}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}0\PYGZsq{}}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/9FE29348E76039A4F1BB242F269D24B126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{pip} \PYG{n}{install} \PYG{n}{Pillow} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/A00B2F852EFD36A0ADF91E60F08A772F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{max2}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{,} \PYG{l+m+mi}{6}\PYG{p}{,} \PYG{l+m+mi}{7}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/A0655ADE6DBD69FB2F6E5F4D6D45376126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{C}\PYG{p}{:}\PYGZbs{}\PYG{n}{work}\PYG{o}{\PYGZgt{}} \PYG{n}{python} \PYG{n}{hello}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{n}{hello}\PYG{p}{,} \PYG{n}{world} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/A1DD8F3D96E8E126ED8B78136A67CF8E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f} \PYG{o}{=} \PYG{n+nb}{open}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}/Users/michael/test.txt\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}r\PYGZsq{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/A2FB6B739A333C8C62EC1194B778196D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{p}{\PYGZob{}}\PYG{o}{\PYGZpc{}} \PYG{n}{block} \PYG{n}{meta} \PYG{o}{\PYGZpc{}}\PYG{p}{\PYGZcb{}} \PYG{o}{...} \PYG{p}{\PYGZob{}}\PYG{o}{\PYGZpc{}} \PYG{n}{endblock} \PYG{o}{\PYGZpc{}}\PYG{p}{\PYGZcb{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/A454234D690791A6FF405FAEEF3FA7D326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip3} \PYG{n}{install} \PYG{n}{aiomysql} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/A560AEA1AC70F1786807396B99144C6026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+s+s1}{\PYGZsq{}I}\PYG{l+s+se}{\PYGZbs{}\PYGZsq{}}\PYG{l+s+s1}{m }\PYG{l+s+se}{\PYGZbs{}\PYGZdq{}}\PYG{l+s+s1}{OK}\PYG{l+s+se}{\PYGZbs{}\PYGZdq{}}\PYG{l+s+s1}{!\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/A5B98F2D95A6FE9DD7380E5568A40F9526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{MyTCPServer}\PYG{p}{(}\PYG{n}{TCPServer}\PYG{p}{,} \PYG{n}{ForkingMixIn}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/A79DD70DE7A45EA48C63AFD8C4827F4526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{if} \PYG{n}{age} \PYG{o}{\PYGZgt{}=} \PYG{l+m+mi}{18}\PYG{p}{:} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/A7F5BE8D6655998A8E094BB0A1F2879326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{build}\PYG{p}{(}\PYG{n}{x}\PYG{p}{,} \PYG{n}{y}\PYG{p}{):} 3 | \PYG{k}{return} \PYG{k}{lambda}\PYG{p}{:} \PYG{n}{x} \PYG{o}{*} \PYG{n}{x} \PYG{o}{+} \PYG{n}{y} \PYG{o}{*} \PYG{n}{y} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/A8AAF9E7CEBBCA7E4E2E4CF58B09218A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{fib}\PYG{p}{(}\PYG{l+m+mi}{6}\PYG{p}{)} 3 | \PYG{l+m+mi}{1} 4 | \PYG{l+m+mi}{1} 5 | \PYG{l+m+mi}{2} 6 | \PYG{l+m+mi}{3} 7 | \PYG{l+m+mi}{5} 8 | \PYG{l+m+mi}{8} 9 | \PYG{l+s+s1}{\PYGZsq{}done\PYGZsq{}} 10 | \end{Verbatim} 11 | -------------------------------------------------------------------------------- /tex/_minted-gen/AD477C71DB0E263968D025A5E1290F4E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{try}\PYG{p}{:} 3 | \PYG{l+m+mi}{10} \PYG{o}{/} \PYG{l+m+mi}{0} 4 | \PYG{k}{except} \PYG{n+ne}{ZeroDivisionError}\PYG{p}{:} 5 | \PYG{k}{raise} \PYG{n+ne}{ValueError}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}input error!\PYGZsq{}}\PYG{p}{)} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/AD7BB6B22A4B3C67F50069708EED8BE826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{power}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{)} 3 | \PYG{l+m+mi}{25} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{power}\PYG{p}{(}\PYG{l+m+mi}{5}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{)} 5 | \PYG{l+m+mi}{25} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/AE370A9DE1AD8155E32B575DFBBA7A0326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{GET} \PYG{o}{/}\PYG{n}{path} \PYG{n}{HTTP}\PYG{o}{/}\PYG{l+m+mf}{1.1} 3 | \PYG{n}{Header1}\PYG{p}{:} \PYG{n}{Value1} 4 | \PYG{n}{Header2}\PYG{p}{:} \PYG{n}{Value2} 5 | \PYG{n}{Header3}\PYG{p}{:} \PYG{n}{Value3} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/AE37525971CC02198D2F5CD3BFA74F6D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{r}\PYG{o}{.}\PYG{n}{encoding} 3 | \PYG{l+s+s1}{\PYGZsq{}utf\PYGZhy{}8\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/AE3A41B5A77F49C3782ECB56FAF4D66026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{t} \PYG{o}{=} \PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{)} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{t} 4 | \PYG{l+m+mi}{1} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/AF6F90BD7062EF2DD2034D851F248A8526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Hello}\PYG{p}{,} \PYG{n}{Alice} \PYG{p}{(}\PYG{o+ow}{in} \PYG{n}{Thread}\PYG{o}{\PYGZhy{}}\PYG{n}{A}\PYG{p}{)} 3 | \PYG{n}{Hello}\PYG{p}{,} \PYG{n}{Bob} \PYG{p}{(}\PYG{o+ow}{in} \PYG{n}{Thread}\PYG{o}{\PYGZhy{}}\PYG{n}{B}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/AFB14133DDD5FBCC0E2EAB62B9A2B50626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{getattr}\PYG{p}{(}\PYG{n}{obj}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}z\PYGZsq{}}\PYG{p}{,} \PYG{l+m+mi}{404}\PYG{p}{)} 3 | \PYG{l+m+mi}{404} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/B008BEE9120ABDDF71E9E11739A6B4E426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{motor} \PYG{o}{=} \PYG{n}{Motor}\PYG{p}{(}\PYG{n}{Port}\PYG{o}{.}\PYG{n}{B}\PYG{p}{)} \PYG{c+c1}{\PYGZsh{} 接在B口} 3 | \PYG{n}{ultrasonic} \PYG{o}{=} \PYG{n}{UltrasonicSensor}\PYG{p}{(}\PYG{n}{Port}\PYG{o}{.}\PYG{n}{S4}\PYG{p}{)} \PYG{c+c1}{\PYGZsh{} 接在4号口} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/B01C4A41D10AF9B2632402945FDDBA3426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{abs} 3 | \PYG{o}{\PYGZlt{}}\PYG{n}{built}\PYG{o}{\PYGZhy{}}\PYG{o+ow}{in} \PYG{n}{function} \PYG{n+nb}{abs}\PYG{o}{\PYGZgt{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/B191F4342059B4C13214E6E1CF6F8EE926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{n}{pymonitor}\PYG{o}{.}\PYG{n}{py} \PYG{n}{wsgiapp}\PYG{o}{.}\PYG{n}{py} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/B1BB0383448FEA8A933CD12F3FB9EFBC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{r} \PYG{o}{=} \PYG{n}{requests}\PYG{o}{.}\PYG{n}{get}\PYG{p}{(}\PYG{n}{url}\PYG{p}{,} \PYG{n}{timeout}\PYG{o}{=}\PYG{l+m+mf}{2.5}\PYG{p}{)} \PYG{c+c1}{\PYGZsh{} 2.5秒后超时} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/B207BA0F82357863153C5DA2C16C1D7526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{args} \PYG{o}{=} \PYG{p}{(}\PYG{l+m+mi}{10}\PYG{p}{,} \PYG{l+m+mi}{5}\PYG{p}{,} \PYG{l+m+mi}{6}\PYG{p}{,} \PYG{l+m+mi}{7}\PYG{p}{)} 3 | \PYG{n+nb}{max}\PYG{p}{(}\PYG{o}{*}\PYG{n}{args}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/B38C5493C9ABE0CAB197B0B8A2D1BCAE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+m+mi}{200} \PYG{n}{OK} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/B3F5107A325E848D274D348D68B9C79726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{run\PYGZus{}twice}\PYG{p}{(}\PYG{n}{animal}\PYG{p}{):} 3 | \PYG{n}{animal}\PYG{o}{.}\PYG{n}{run}\PYG{p}{()} 4 | \PYG{n}{animal}\PYG{o}{.}\PYG{n}{run}\PYG{p}{()} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/B42FFFC6DEF51769D18BF6DA201235D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{p}{\PYGZob{}}\PYG{o}{\PYGZpc{}} \PYG{n}{block} \PYG{n}{beforehead} \PYG{o}{\PYGZpc{}}\PYG{p}{\PYGZcb{}} \PYG{o}{...} \PYG{p}{\PYGZob{}}\PYG{o}{\PYGZpc{}} \PYG{n}{endblock} \PYG{o}{\PYGZpc{}}\PYG{p}{\PYGZcb{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/B598C64D8D298475700DF7EF8F95F29B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{add\PYGZus{}end}\PYG{p}{(}\PYG{n}{L}\PYG{o}{=}\PYG{p}{[]):} 3 | \PYG{n}{L}\PYG{o}{.}\PYG{n}{append}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}END\PYGZsq{}}\PYG{p}{)} 4 | \PYG{k}{return} \PYG{n}{L} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/B5E56F53D238D2246CB25F208CE8ED4226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{int2}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}10010\PYGZsq{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/B6169CB5F834A2260E87292CC179E53B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{name}\PYG{p}{)} 3 | \PYG{n}{Michael} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/B753B00E352F5F43E9966BE818AD898326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{now} \PYG{o}{=} \PYG{n}{log}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}execute\PYGZsq{}}\PYG{p}{)(}\PYG{n}{now}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/B7D75B7909C4D160872AAF2514F3357E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{sudo} \PYG{n}{apt}\PYG{o}{\PYGZhy{}}\PYG{n}{get} \PYG{n}{install} \PYG{n}{openssh}\PYG{o}{\PYGZhy{}}\PYG{n}{server} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/B8A6F053171EA867E484DF91D602BEF926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{L}\PYG{p}{[:}\PYG{l+m+mi}{3}\PYG{p}{]} 3 | \PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}Michael\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}Sarah\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}Tracy\PYGZsq{}}\PYG{p}{]} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/B9E0A749AA2715130D6615D1D3CBD90726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{a} \PYG{o}{=} \PYG{l+s+s1}{\PYGZsq{}ABC\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/BA7A7DB2DCD742D31E7768E718881A2226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{object} \PYG{o}{\PYGZhy{}\PYGZgt{}} \PYG{n}{Animal} \PYG{o}{\PYGZhy{}\PYGZgt{}} \PYG{n}{Dog} \PYG{o}{\PYGZhy{}\PYGZgt{}} \PYG{n}{Husky} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/BAAAC9C43C842BD7AE04C6960EB7361926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k+kn}{from} \PYG{n+nn}{tkinter} \PYG{k+kn}{import} \PYG{o}{*} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/BB2F066FAB7F5247C5887316982A08D526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+m+mi}{10} \PYG{o}{/} \PYG{l+m+mi}{3} 3 | \PYG{l+m+mf}{3.3333333333333335} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/BB35552EDE53D1F8E60EA852631C34A926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{L2} \PYG{o}{=} \PYG{n+nb}{sorted}\PYG{p}{(}\PYG{n}{L}\PYG{p}{,} \PYG{n}{key}\PYG{o}{=}\PYG{n}{by\PYGZus{}score}\PYG{p}{)} 3 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{L2}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/BBA42C3A3E62025C2CFF572CD16FBB7026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k+kn}{import} \PYG{n+nn}{logging} 3 | \PYG{n}{logging}\PYG{o}{.}\PYG{n}{basicConfig}\PYG{p}{(}\PYG{n}{level}\PYG{o}{=}\PYG{n}{logging}\PYG{o}{.}\PYG{n}{INFO}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/BCB564578CBC14639E2FD5312222BD1B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{n}{app}\PYG{o}{.}\PYG{n}{py} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/BD04F968FCC5EF1848218084DD941B8026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} 自动把handler模块的所有符合条件的函数注册了:} 3 | \PYG{n}{add\PYGZus{}routes}\PYG{p}{(}\PYG{n}{app}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}handlers\PYGZsq{}}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/BDB616C86D3388BECF810839AA8D9BD826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{C}\PYG{p}{:}\PYGZbs{}\PYG{n}{work}\PYG{o}{\PYGZgt{}}\PYG{n}{python} \PYG{n}{calc}\PYG{o}{.}\PYG{n}{py} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/BDF7309AB9F2D1DBC68665CCBEF9659026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{isinstance}\PYG{p}{(}\PYG{n}{h}\PYG{p}{,} \PYG{n}{Husky}\PYG{p}{)} 3 | \PYG{k+kc}{True} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/BE23C958E7D50913F432C4D2B1441D1726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{n}{use\PYGZus{}chainmap}\PYG{o}{.}\PYG{n}{py} \PYG{o}{\PYGZhy{}}\PYG{n}{u} \PYG{n}{bob} 3 | \PYG{n}{color}\PYG{o}{=}\PYG{n}{red} 4 | \PYG{n}{user}\PYG{o}{=}\PYG{n}{bob} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/BE81956DF4B3CC8C00F05E594DA516B126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{L} \PYG{o}{=} \PYG{p}{[]} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{len}\PYG{p}{(}\PYG{n}{L}\PYG{p}{)} 4 | \PYG{l+m+mi}{0} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/BF635859BCE4C390FFD5667D10DE951A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{k+kn}{import} \PYG{n+nn}{sys} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{sys}\PYG{o}{.}\PYG{n}{path}\PYG{o}{.}\PYG{n}{append}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}/Users/michael/my\PYGZus{}py\PYGZus{}scripts\PYGZsq{}}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/C08E48D9D9007865C773127049795EE426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{PI} \PYG{o}{=} \PYG{l+m+mf}{3.14159265359} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/C0BB1FBD9A0F99E467535372CFBA2FCA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s} \PYG{o}{=} \PYG{l+s+s1}{\PYGZsq{}ABC}\PYG{l+s+se}{\PYGZbs{}\PYGZbs{}}\PYG{l+s+s1}{\PYGZhy{}001\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/C1CE8B09015CC41E5BF1D1C1C1C9A04426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{p}{\PYGZob{}}\PYG{o}{\PYGZpc{}} \PYG{n}{block} \PYG{n}{title} \PYG{o}{\PYGZpc{}}\PYG{p}{\PYGZcb{}} \PYG{o}{...} \PYG{p}{\PYGZob{}}\PYG{o}{\PYGZpc{}} \PYG{n}{endblock} \PYG{o}{\PYGZpc{}}\PYG{p}{\PYGZcb{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/C3A574461B58344155AE9F51AB68D92226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{part}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{1}\PYG{o}{/}\PYG{n}{part}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{2} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/C3B8E9A411BC600EC099FA86BD859AC526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{s}\PYG{o}{.}\PYG{n}{age}\PYG{p}{()} 3 | \PYG{l+m+mi}{25} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/C418FFD1F49B3BA34DE24DE85379FF1026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{from} \PYG{n+nn}{enum} \PYG{k+kn}{import} \PYG{n}{Enum}\PYG{p}{,} \PYG{n}{unique} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/C41E964F169A66EACB85E990580AAB5B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{mysql} \PYG{o}{\PYGZhy{}}\PYG{n}{u} \PYG{n}{root} \PYG{o}{\PYGZhy{}}\PYG{n}{p} \PYG{o}{\PYGZlt{}} \PYG{n}{schema}\PYG{o}{.}\PYG{n}{sql} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/C439E133930DE0840299ED07A466CAC226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{a} \PYG{o}{=} \PYG{n}{Animal}\PYG{p}{()} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{d} \PYG{o}{=} \PYG{n}{Dog}\PYG{p}{()} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{h} \PYG{o}{=} \PYG{n}{Husky}\PYG{p}{()} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/C51B3782207453B4AD409B9E51D79FE926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+m+mi}{100}\PYG{o}{+}\PYG{l+m+mi}{200} 3 | \PYG{l+m+mi}{300} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/C7412CBADD26FD08790ACB340BD6C6B326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+s+s1}{\PYGZsq{}ABC\PYGZsq{}}\PYG{o}{.}\PYG{n}{lower}\PYG{p}{()} 3 | \PYG{l+s+s1}{\PYGZsq{}abc\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/C788BB7A4D828CC69C59CED6D1E62E9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{isinstance}\PYG{p}{(}\PYG{n}{h}\PYG{p}{,} \PYG{n}{Dog}\PYG{p}{)} 3 | \PYG{k+kc}{True} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/C861DD12DD20DCDAC22595ACEC3487CE26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+m+mi}{100} \PYG{o}{+} \PYG{l+m+mi}{200} \PYG{o}{+} \PYG{l+m+mi}{300} 3 | \PYG{l+m+mi}{600} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/C97CDF391B6592302A495A0BF513376226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{x} \PYG{o}{=} \PYG{l+m+mi}{10} 3 | \PYG{n}{x} \PYG{o}{=} \PYG{n}{x} \PYG{o}{+} \PYG{l+m+mi}{2} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/C9E208B23E3DDABE3ACB6500D0A2C79A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+m+mi}{10} 3 | \PYG{l+m+mi}{3} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/CA32F2BD954B3EDCF027F914270E289B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip3} \PYG{n}{install} \PYG{n}{jinja2} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/CA350253304F557F2A8A56AEE105090126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{int}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}12345\PYGZsq{}}\PYG{p}{)} 3 | \PYG{l+m+mi}{12345} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/CA403BECDF575CB6F1E1D222EEF1367926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}hello, world\PYGZsq{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/CA780AA2D7D18DA364F5CBC05905EBA826E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{GET} \PYG{o}{/} \PYG{n}{HTTP}\PYG{o}{/}\PYG{l+m+mf}{1.1} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/CB45A32BA7ADD4E2C965283E36055AC426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{msg} \PYG{o}{=} \PYG{n}{Parser}\PYG{p}{()}\PYG{o}{.}\PYG{n}{parsestr}\PYG{p}{(}\PYG{n}{msg\PYGZus{}content}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/CBC8FCE5A2C62AE29DD4F03716BE05C926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{L}\PYG{p}{[:}\PYG{l+m+mi}{10}\PYG{p}{:}\PYG{l+m+mi}{2}\PYG{p}{]} 3 | \PYG{p}{[}\PYG{l+m+mi}{0}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{,} \PYG{l+m+mi}{4}\PYG{p}{,} \PYG{l+m+mi}{6}\PYG{p}{,} \PYG{l+m+mi}{8}\PYG{p}{]} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/CCBC32D95D687F953A7535259C9BB4F726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f} \PYG{o}{=} \PYG{n+nb}{abs} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f} 4 | \PYG{o}{\PYGZlt{}}\PYG{n}{built}\PYG{o}{\PYGZhy{}}\PYG{o+ow}{in} \PYG{n}{function} \PYG{n+nb}{abs}\PYG{o}{\PYGZgt{}} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/CEE40FCA44B020616BA394B3F1BC387426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k+kn}{import} \PYG{n+nn}{os} 3 | 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{os}\PYG{o}{.}\PYG{n}{path}\PYG{o}{.}\PYG{n}{abspath}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}.\PYGZsq{}}\PYG{p}{))} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/CF64DC7FB808EBDE90E0A7CA6907A64C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n+nv+vm}{\PYGZus{}\PYGZus{}file\PYGZus{}\PYGZus{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/CFBB897785007DE27CDAB34F4095FD3B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python} \PYG{n}{app}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{o}{*} \PYG{n}{Running} \PYG{n}{on} \PYG{n}{http}\PYG{p}{:}\PYG{o}{//}\PYG{l+m+mf}{127.0}\PYG{o}{.}\PYG{l+m+mf}{0.1}\PYG{p}{:}\PYG{l+m+mi}{5000}\PYG{o}{/} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/D0424DFF1850BFF207BDF0410D30409A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{File} \PYG{l+s+s2}{\PYGZdq{}err.py\PYGZdq{}}\PYG{p}{,} \PYG{n}{line} \PYG{l+m+mi}{11}\PYG{p}{,} \PYG{o+ow}{in} \PYG{o}{\PYGZlt{}}\PYG{n}{module}\PYG{o}{\PYGZgt{}} 3 | \PYG{n}{main}\PYG{p}{()} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/D0442A85EC0F6B66DEF309B2CADE710326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{L}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/D3C410459651E3377C62272AC416094D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{s}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/D3FA1272759E589F4C9E7928DD465C3726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{┌───┐} \PYG{err}{┌───────┐} 3 | \PYG{err}{│} \PYG{n}{a} \PYG{err}{│─────────────────}\PYG{o}{\PYGZgt{}}\PYG{err}{│} \PYG{l+s+s1}{\PYGZsq{}abc\PYGZsq{}} \PYG{err}{│} 4 | \PYG{err}{└───┘} \PYG{err}{└───────┘} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/D40730B5BC475E6FCB5614039BD999B626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Bat}\PYG{p}{(}\PYG{n}{Mammal}\PYG{p}{,} \PYG{n}{Flyable}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/D5AE957B96AD300E9C283AB1D601EA0626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{fab} \PYG{n}{build} 3 | \PYG{err}{\PYGZdl{}} \PYG{n}{fab} \PYG{n}{deploy} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/D5BAF8445ED01E900FB046A6A820B44926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{run\PYGZus{}twice}\PYG{p}{(}\PYG{n}{Animal}\PYG{p}{())} 3 | \PYG{n}{Animal} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 4 | \PYG{n}{Animal} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/D62F5C099E49E76B2B897F40526F9C3226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{bart}\PYG{o}{.}\PYG{n}{get\PYGZus{}name}\PYG{p}{()} 3 | \PYG{l+s+s1}{\PYGZsq{}Bart Simpson\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/D75E85EB909492A9994C6EC0441BB0A126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{C}\PYG{p}{:}\PYGZbs{}\PYG{n}{Workspace}\PYG{o}{\PYGZgt{}} \PYG{n}{python} \PYG{n}{hello}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{n}{Michael} 4 | \PYG{n}{hello}\PYG{p}{,} \PYG{n}{Michael} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/D7F0EABC5CE5BD2D6D1754EE1748AE1526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k}{def} \PYG{n+nf}{findMinAndMax}\PYG{p}{(}\PYG{n}{L}\PYG{p}{):} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/D8705E70A16BBDC081ADE43974E801CC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{f}\PYG{p}{(}\PYG{n}{x}\PYG{p}{):} 3 | \PYG{k}{return} \PYG{n}{x} \PYG{o}{*} \PYG{n}{x} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/D8CFD35E738F9EE9B0114F78381EFAAD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{l+m+mi}{1} 3 | \PYG{l+m+mi}{2} 4 | \PYG{n}{x} 5 | \PYG{n}{y} 6 | \PYG{l+m+mi}{3} 7 | \PYG{n}{z} 8 | \end{Verbatim} 9 | -------------------------------------------------------------------------------- /tex/_minted-gen/D8DBCA77F39E14D24C5AEFB98495C4ED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZlt{}}\PYG{n+nb}{input} \PYG{n}{v}\PYG{o}{\PYGZhy{}}\PYG{n}{model}\PYG{o}{=}\PYG{l+s+s2}{\PYGZdq{}name\PYGZdq{}} \PYG{n}{class}\PYG{o}{=}\PYG{l+s+s2}{\PYGZdq{}uk\PYGZhy{}width\PYGZhy{}1\PYGZhy{}1\PYGZdq{}}\PYG{o}{\PYGZgt{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/D9DDB55890081FF89C0CB958E3AFA0E026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{with} \PYG{n+nb}{open}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}/path/to/file\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}r\PYGZsq{}}\PYG{p}{)} \PYG{k}{as} \PYG{n}{f}\PYG{p}{:} 3 | \PYG{n}{f}\PYG{o}{.}\PYG{n}{read}\PYG{p}{()} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/DA27BDC9A3DD229D75BD139A9D88654F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+m+mi}{1} \PYG{o}{+} \PYG{l+m+mi}{2} \PYG{o}{+} \PYG{l+m+mi}{3} 3 | \PYG{l+m+mi}{6} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/DAD7F2C8E5859FC9FA8041F927B6FF9D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}}\PYG{c+c1}{\PYGZsh{}%&^@!&$#;!~%¥%:(……} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/DB35F0548F46A6205F25723E5735583B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{name} \PYG{o}{=} \PYG{n+nb}{input}\PYG{p}{()} 3 | \PYG{n}{Michael} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/DBEE69EDFB5EA46D6E7EDB1AB3481E6126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{now}\PYG{p}{()} 3 | \PYG{n}{call} \PYG{n}{now}\PYG{p}{():} 4 | \PYG{l+m+mi}{2015}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{3}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{25} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/DBFAFAD6D2CC76659C78E6FA99142E2B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{int2}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}1000000\PYGZsq{}}\PYG{p}{)} 3 | \PYG{l+m+mi}{64} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{int2}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}1010101\PYGZsq{}}\PYG{p}{)} 5 | \PYG{l+m+mi}{85} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/DC160E409FBE058FB26ECC2E3EB5AE9326E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+m+mi}{300}\PYG{p}{)} 3 | \PYG{l+m+mi}{300} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+m+mi}{100} \PYG{o}{+} \PYG{l+m+mi}{200}\PYG{p}{)} 5 | \PYG{l+m+mi}{300} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/DCB06F9FF3FA4A3CC2CC2219117F9D6626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{o}{./}\PYG{n}{pymonitor}\PYG{o}{.}\PYG{n}{py} \PYG{n}{app}\PYG{o}{.}\PYG{n}{py} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/DDC6099E5AE0E33C0AD7DDEE32AF0DED26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{r}\PYG{o}{.}\PYG{n}{cookies}\PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}ts\PYGZsq{}}\PYG{p}{]} 3 | \PYG{l+s+s1}{\PYGZsq{}example\PYGZus{}cookie\PYGZus{}12345\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/DF070C73AFDFECA2AE7CFB93BEC6A35E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nd}{@log} 3 | \PYG{k}{def} \PYG{n+nf}{f}\PYG{p}{():} 4 | \PYG{k}{pass} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/DF14158D057646E97230825B66DC2CA926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{t} \PYG{o}{=} \PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{)} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{t} 4 | \PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/DF30AA5FB561D631B668BC14A620B0E526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{Answer} \PYG{o}{=} \PYG{k+kc}{True} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/DF4697B9472E60508B091C83DF7F595E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/DF5BB2AC270C9102215DE1D0248554A726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{easy\PYGZus{}install} \PYG{n}{fabric} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/DF6FFC0B71CBC586EE7C9751D0A01A1926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{l+m+mi}{9} \PYG{o}{/} \PYG{l+m+mi}{3} 3 | \PYG{l+m+mf}{3.0} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/DFBA3A580446955AC3732813FFEF042B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nd}{@asyncio}\PYG{o}{.}\PYG{n}{coroutine} 3 | \PYG{k}{def} \PYG{n+nf}{handle\PYGZus{}url\PYGZus{}xxx}\PYG{p}{(}\PYG{n}{request}\PYG{p}{):} 4 | \PYG{k}{pass} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/DFFB36408D1BE9F055ADE8BE240F1D4026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | 4 | \PYG{k+kn}{import} \PYG{n+nn}{json} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/E1F689C822DBF39D50C56D91AA1AB60C26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nd}{@log}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}execute\PYGZsq{}}\PYG{p}{)} 3 | \PYG{k}{def} \PYG{n+nf}{f}\PYG{p}{():} 4 | \PYG{k}{pass} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/E299C21266284DA289460C1D7629B0DF26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f}\PYG{o}{.}\PYG{n}{close}\PYG{p}{()} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/E2A1766823B99431AB9A80713638E64026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s} \PYG{o}{=} \PYG{n}{Student}\PYG{p}{()} 3 | \PYG{n}{s}\PYG{o}{.}\PYG{n}{score} \PYG{o}{=} \PYG{l+m+mi}{9999} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/E42540D18F58EE2552DF0F7064E0EFDA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{L} \PYG{o}{=} \PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}Apple\PYGZsq{}}\PYG{p}{,} \PYG{l+m+mi}{123}\PYG{p}{,} \PYG{k+kc}{True}\PYG{p}{]} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/E4DC456E0C6EFE873888E4F561A7F5C026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{L}\PYG{p}{[}\PYG{l+m+mi}{0}\PYG{p}{:}\PYG{l+m+mi}{3}\PYG{p}{]} 3 | \PYG{p}{[}\PYG{l+s+s1}{\PYGZsq{}Michael\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}Sarah\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}Tracy\PYGZsq{}}\PYG{p}{]} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/E526A8B94DE520CCD9D42133667E7A4026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{calc\PYGZus{}md5}\PYG{p}{(}\PYG{n}{password}\PYG{p}{):} 3 | \PYG{k}{return} \PYG{n}{get\PYGZus{}md5}\PYG{p}{(}\PYG{n}{password} \PYG{o}{+} \PYG{l+s+s1}{\PYGZsq{}the\PYGZhy{}Salt\PYGZsq{}}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/E535FD54C9240970D3888DA2FEF3181726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{fab} \PYG{n}{build} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/E57640EE4E51DBD9F2A926285077D16026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{kw} \PYG{o}{=} \PYG{p}{\PYGZob{}} \PYG{l+s+s1}{\PYGZsq{}base\PYGZsq{}}\PYG{p}{:} \PYG{l+m+mi}{2} \PYG{p}{\PYGZcb{}} 3 | \PYG{n+nb}{int}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}10010\PYGZsq{}}\PYG{p}{,} \PYG{o}{**}\PYG{n}{kw}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/E590DCBF2DA3A79320927DA6F4A19B0426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Dog}\PYG{p}{(}\PYG{n}{Mammal}\PYG{p}{,} \PYG{n}{RunnableMixIn}\PYG{p}{,} \PYG{n}{CarnivorousMixIn}\PYG{p}{):} 3 | \PYG{k}{pass} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/E5D90886E3D43D1B0ABCB8FCD81C90A426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{type}\PYG{p}{:} \PYG{o}{\PYGZlt{}}\PYG{k}{class} \PYG{err}{\PYGZsq{}}\PYG{n+nc}{\PYGZus{}\PYGZus{}main\PYGZus{}\PYGZus{}}\PYG{o}{.}\PYG{n}{User}\PYG{l+s+s1}{\PYGZsq{}\PYGZgt{}} 3 | \PYG{n}{name}\PYG{p}{:} \PYG{n}{Bob} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/E673E30D16222FE84C897D065AC6CE7726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{p} \PYG{o}{=} \PYG{p}{(}\PYG{l+m+mi}{1}\PYG{p}{,} \PYG{l+m+mi}{2}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/E69677CB7AEF187A2F07039B5FF238B426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{SHA1}\PYG{p}{(}\PYG{l+s+s2}{\PYGZdq{}用户id\PYGZdq{}} \PYG{o}{+} \PYG{l+s+s2}{\PYGZdq{}用户口令\PYGZdq{}} \PYG{o}{+} \PYG{l+s+s2}{\PYGZdq{}过期时间\PYGZdq{}} \PYG{o}{+} \PYG{l+s+s2}{\PYGZdq{}SecretKey\PYGZdq{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/EA80B04C4499F789DC2F1F68319427DD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{def} \PYG{n+nf}{power}\PYG{p}{(}\PYG{n}{x}\PYG{p}{):} 3 | \PYG{k}{return} \PYG{n}{x} \PYG{o}{*} \PYG{n}{x} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/EB363D7710F4C71F5364349B3B8F657126E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip} \PYG{n}{install} \PYG{n}{psutil} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/EC76DE52A94382898480297285FF06F026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{cursor}\PYG{o}{.}\PYG{n}{execute}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}select * from user where name=? and pwd=?\PYGZsq{}}\PYG{p}{,} \PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}abc\PYGZsq{}}\PYG{p}{,} \PYG{l+s+s1}{\PYGZsq{}password\PYGZsq{}}\PYG{p}{))} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/ED3FC440E615BFF6FDDF4DACF0C68C3B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nd}{@log} 3 | \PYG{k}{def} \PYG{n+nf}{now}\PYG{p}{():} 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}2015\PYGZhy{}3\PYGZhy{}25\PYGZsq{}}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/EE40163526D57BD775CDD3BE360AF82B26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Animal}\PYG{p}{(}\PYG{n+nb}{object}\PYG{p}{):} 3 | \PYG{k}{def} \PYG{n+nf}{run}\PYG{p}{(}\PYG{n+nb+bp}{self}\PYG{p}{):} 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Animal is running...\PYGZsq{}}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/EE6EDB3683FBB1779B1C67EBDAC0657226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} 运行代码观察结果} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/EEAD5509235EF8E633A9FD91096B557E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{user} \PYG{o}{=} \PYG{k}{yield from} \PYG{n}{User}\PYG{o}{.}\PYG{n}{find}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}123\PYGZsq{}}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/EEC2B689BEEC6E38683B6F85CCBCD6AA26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{dog} \PYG{o}{=} \PYG{n}{Dog}\PYG{p}{()} 3 | \PYG{n}{dog}\PYG{o}{.}\PYG{n}{run}\PYG{p}{()} 4 | 5 | \PYG{n}{cat} \PYG{o}{=} \PYG{n}{Cat}\PYG{p}{()} 6 | \PYG{n}{cat}\PYG{o}{.}\PYG{n}{run}\PYG{p}{()} 7 | \end{Verbatim} 8 | -------------------------------------------------------------------------------- /tex/_minted-gen/EF2FAFD78CC74EDF29259F706785A4C526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{bart}\PYG{o}{.}\PYG{n}{print\PYGZus{}score}\PYG{p}{()} 3 | \PYG{n}{Bart} \PYG{n}{Simpson}\PYG{p}{:} \PYG{l+m+mi}{59} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/EF90001060F660047B00FC213C55A16426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | 4 | \PYG{n}{s1} \PYG{o}{=} \PYG{l+m+mi}{72} 5 | \PYG{n}{s2} \PYG{o}{=} \PYG{l+m+mi}{85} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/F17F40CE5C26E599069266FAA265D51A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{balance} \PYG{o}{=} \PYG{n}{balance} \PYG{o}{+} \PYG{n}{n} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/F251BED5ADDBA8A32B925BA1FC9F0A2A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{p}{\PYGZob{}} \PYG{l+s+s1}{\PYGZsq{}name\PYGZsq{}}\PYG{p}{:} \PYG{l+s+s1}{\PYGZsq{}Michael\PYGZsq{}} \PYG{p}{\PYGZcb{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/F3971FFEC7CAB92F951946EC9330B93026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{n}{my\PYGZus{}abs}\PYG{p}{(}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{99}\PYG{p}{))} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/F3EEA7BF3CB51EF100150A09DCEACF3D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZlt{}}\PYG{n}{h1}\PYG{o}{\PYGZgt{}} 3 | \PYG{n}{hello} 4 | \PYG{n}{world} 5 | \PYG{o}{\PYGZlt{}/}\PYG{n}{h1}\PYG{o}{\PYGZgt{}} 6 | \end{Verbatim} 7 | -------------------------------------------------------------------------------- /tex/_minted-gen/F459C60E131CF5F5DB72F8A52E1F214D26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{with} \PYG{n}{create\PYGZus{}query}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Bob\PYGZsq{}}\PYG{p}{)} \PYG{k}{as} \PYG{n}{q}\PYG{p}{:} 3 | \PYG{n}{q}\PYG{o}{.}\PYG{n}{query}\PYG{p}{()} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/F4B018A521341142888B69A49B63742226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{run\PYGZus{}twice}\PYG{p}{(}\PYG{n}{Dog}\PYG{p}{())} 3 | \PYG{n}{Dog} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 4 | \PYG{n}{Dog} \PYG{o+ow}{is} \PYG{n}{running}\PYG{o}{...} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/F4D05835AB13D707A2A45820692CCD3526E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{c+c1}{\PYGZsh{} -*- coding: utf-8 -*-} 3 | \PYG{k+kn}{from} \PYG{n+nn}{functools} \PYG{k+kn}{import} \PYG{n}{reduce} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/F5B468DFE9C49AE7546392FF3F4A53FC26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip} \PYG{n}{install} \PYG{n}{pillow} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/F5FD1C5FE68E3D18FEE04083BC0275E226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{k+kn}{import} \PYG{n+nn}{os} 3 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{os}\PYG{o}{.}\PYG{n}{name} 4 | \PYG{l+s+s1}{\PYGZsq{}posix\PYGZsq{}} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/F729A8F95BD572757D800A91555A043226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s} \PYG{o}{=} \PYG{l+s+sa}{r}\PYG{l+s+s1}{\PYGZsq{}ABC\PYGZbs{}\PYGZhy{}001\PYGZsq{}} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/F7C1B421CA035FFDD64AD40A78B6949A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f1}\PYG{p}{()} 3 | \PYG{l+m+mi}{9} 4 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f2}\PYG{p}{()} 5 | \PYG{l+m+mi}{9} 6 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{f3}\PYG{p}{()} 7 | \PYG{l+m+mi}{9} 8 | \end{Verbatim} 9 | -------------------------------------------------------------------------------- /tex/_minted-gen/F819095D97FA1CC090B36EC0FFF8259626E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{s}\PYG{o}{.}\PYG{n}{bind}\PYG{p}{((}\PYG{l+s+s1}{\PYGZsq{}127.0.0.1\PYGZsq{}}\PYG{p}{,} \PYG{l+m+mi}{9999}\PYG{p}{))} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/F8A8A7D6DBC4CBAF519EF783ED2C056A26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{pip} \PYG{n}{install} \PYG{n}{requests} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/F8D8F97F763665FA13E34A63D618FF0226E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{python3} \PYG{n}{app}\PYG{o}{.}\PYG{n}{py} 3 | \PYG{n}{INFO}\PYG{p}{:}\PYG{n}{root}\PYG{p}{:}\PYG{n}{server} \PYG{n}{started} \PYG{n}{at} \PYG{n}{http}\PYG{p}{:} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/FA4231B36C8C13849BA699F12555A91926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n+nd}{@get}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}/blog/}\PYG{l+s+si}{\PYGZob{}id\PYGZcb{}}\PYG{l+s+s1}{\PYGZsq{}}\PYG{p}{)} 3 | \PYG{k}{def} \PYG{n+nf}{get\PYGZus{}blog}\PYG{p}{(}\PYG{n+nb}{id}\PYG{p}{):} 4 | \PYG{k}{pass} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/FA8C9BE8A432F00658DDC7FEA6E284CD26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{if} \PYG{n+nv+vm}{\PYGZus{}\PYGZus{}name\PYGZus{}\PYGZus{}}\PYG{o}{==}\PYG{l+s+s1}{\PYGZsq{}\PYGZus{}\PYGZus{}main\PYGZus{}\PYGZus{}\PYGZsq{}}\PYG{p}{:} 3 | \PYG{n}{test}\PYG{p}{()} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/FB7916FE7EB000C8171F031C9875084E26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{o}{\PYGZgt{}\PYGZgt{}\PYGZgt{}} \PYG{n}{bart}\PYG{o}{.}\PYG{n}{\PYGZus{}Student\PYGZus{}\PYGZus{}name} 3 | \PYG{l+s+s1}{\PYGZsq{}Bart Simpson\PYGZsq{}} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/FBE50E596AC50E78FD8FDCF15AE060D726E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{err}{\PYGZdl{}} \PYG{n}{sudo} \PYG{n}{apt}\PYG{o}{\PYGZhy{}}\PYG{n}{get} \PYG{n}{install} \PYG{n}{nginx} \PYG{n}{supervisor} \PYG{n}{python3} \PYG{n}{mysql}\PYG{o}{\PYGZhy{}}\PYG{n}{server} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/FD57BAD38B30CA03175E9EE1152947D026E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{k}{class} \PYG{n+nc}{Tortoise}\PYG{p}{(}\PYG{n}{Animal}\PYG{p}{):} 3 | \PYG{k}{def} \PYG{n+nf}{run}\PYG{p}{(}\PYG{n+nb+bp}{self}\PYG{p}{):} 4 | \PYG{n+nb}{print}\PYG{p}{(}\PYG{l+s+s1}{\PYGZsq{}Tortoise is running slowly...\PYGZsq{}}\PYG{p}{)} 5 | \end{Verbatim} 6 | -------------------------------------------------------------------------------- /tex/_minted-gen/FECC33550D6933835188B8AAFE5CF86F26E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{File} \PYG{l+s+s2}{\PYGZdq{}err.py\PYGZdq{}}\PYG{p}{,} \PYG{n}{line} \PYG{l+m+mi}{3}\PYG{p}{,} \PYG{o+ow}{in} \PYG{n}{foo} 3 | \PYG{k}{return} \PYG{l+m+mi}{10} \PYG{o}{/} \PYG{n+nb}{int}\PYG{p}{(}\PYG{n}{s}\PYG{p}{)} 4 | \end{Verbatim} 5 | -------------------------------------------------------------------------------- /tex/_minted-gen/FEEE31FB80C01D13D8F0F918FA73447426E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{part}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{1}\PYGZbs{}\PYG{n}{part}\PYG{o}{\PYGZhy{}}\PYG{l+m+mi}{2} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/_minted-gen/FEFDB793BF3DEC33D77A46FF58A2CEF926E4EC3F9E5F65D12C343741CDA3F64F.pygtex: -------------------------------------------------------------------------------- 1 | \begin{Verbatim}[commandchars=\\\{\},codes={\catcode`\$=3\catcode`\^=7\catcode`\_=8}] 2 | \PYG{n}{now} \PYG{o}{=} \PYG{n}{log}\PYG{p}{(}\PYG{n}{now}\PYG{p}{)} 3 | \end{Verbatim} 4 | -------------------------------------------------------------------------------- /tex/fig/1008802356788736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1008802356788736.png -------------------------------------------------------------------------------- /tex/fig/1008802515054144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1008802515054144.png -------------------------------------------------------------------------------- /tex/fig/1017024373322432l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1017024373322432l.png -------------------------------------------------------------------------------- /tex/fig/1017032122300544l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1017032122300544l.png -------------------------------------------------------------------------------- /tex/fig/1018496437713568l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1018496437713568l.png -------------------------------------------------------------------------------- /tex/fig/1019401123918240l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1019401123918240l.png -------------------------------------------------------------------------------- /tex/fig/1019633050057984l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1019633050057984l.png -------------------------------------------------------------------------------- /tex/fig/1019633079028160l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1019633079028160l.png -------------------------------------------------------------------------------- /tex/fig/1048401552601344l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1048401552601344l.png -------------------------------------------------------------------------------- /tex/fig/1050933742009056l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1050933742009056l.png -------------------------------------------------------------------------------- /tex/fig/1183096336546240l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1183096336546240l.png -------------------------------------------------------------------------------- /tex/fig/1183103158580480l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1183103158580480l.png -------------------------------------------------------------------------------- /tex/fig/1183105155068736l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1183105155068736l.png -------------------------------------------------------------------------------- /tex/fig/1249598058265600l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1249598058265600l.png -------------------------------------------------------------------------------- /tex/fig/1249600178485568l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1249600178485568l.png -------------------------------------------------------------------------------- /tex/fig/1249600522419392l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1249600522419392l.png -------------------------------------------------------------------------------- /tex/fig/12831079132037780.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/12831079132037780.png -------------------------------------------------------------------------------- /tex/fig/12903050704323210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/12903050704323210.png -------------------------------------------------------------------------------- /tex/fig/1311543585144897l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1311543585144897l.png -------------------------------------------------------------------------------- /tex/fig/1342562604417090l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1342562604417090l.png -------------------------------------------------------------------------------- /tex/fig/1346188160794690l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346188160794690l.png -------------------------------------------------------------------------------- /tex/fig/1346189421183041l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346189421183041l.png -------------------------------------------------------------------------------- /tex/fig/1346190218100802l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346190218100802l.png -------------------------------------------------------------------------------- /tex/fig/1346267955331105l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346267955331105l.png -------------------------------------------------------------------------------- /tex/fig/1346268110520386l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346268110520386l.png -------------------------------------------------------------------------------- /tex/fig/1346290294194241l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346290294194241l.png -------------------------------------------------------------------------------- /tex/fig/1346290325651521l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346290325651521l.png -------------------------------------------------------------------------------- /tex/fig/1346303361548354l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346303361548354l.png -------------------------------------------------------------------------------- /tex/fig/1346304282198081l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346304282198081l.png -------------------------------------------------------------------------------- /tex/fig/1346727531511874l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/1346727531511874l.png -------------------------------------------------------------------------------- /tex/fig/9212153960043840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9212153960043840.png -------------------------------------------------------------------------------- /tex/fig/9229153429258240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9229153429258240.png -------------------------------------------------------------------------------- /tex/fig/9230247568328960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9230247568328960.png -------------------------------------------------------------------------------- /tex/fig/9230254446989120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9230254446989120.png -------------------------------------------------------------------------------- /tex/fig/9236263761773440.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9236263761773440.png -------------------------------------------------------------------------------- /tex/fig/9237918782554560.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9237918782554560.png -------------------------------------------------------------------------------- /tex/fig/9237920586134400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9237920586134400.png -------------------------------------------------------------------------------- /tex/fig/9237921916377600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9237921916377600.png -------------------------------------------------------------------------------- /tex/fig/9239237591896000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9239237591896000.png -------------------------------------------------------------------------------- /tex/fig/9239237870188160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9239237870188160.png -------------------------------------------------------------------------------- /tex/fig/9239304719270080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9239304719270080.png -------------------------------------------------------------------------------- /tex/fig/9239735167876800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9239735167876800.png -------------------------------------------------------------------------------- /tex/fig/9239736475158720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9239736475158720.png -------------------------------------------------------------------------------- /tex/fig/9240168310386880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9240168310386880.png -------------------------------------------------------------------------------- /tex/fig/9288179064464320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9288179064464320.png -------------------------------------------------------------------------------- /tex/fig/9466582752136320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9466582752136320.png -------------------------------------------------------------------------------- /tex/fig/9466583066904000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9466583066904000.png -------------------------------------------------------------------------------- /tex/fig/9466584239922880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9466584239922880.png -------------------------------------------------------------------------------- /tex/fig/9466587096437760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/9466587096437760.png -------------------------------------------------------------------------------- /tex/fig/949444125467040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/949444125467040.png -------------------------------------------------------------------------------- /tex/fig/950413532592512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950413532592512.png -------------------------------------------------------------------------------- /tex/fig/950413553562752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950413553562752.png -------------------------------------------------------------------------------- /tex/fig/950413570828960.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950413570828960.png -------------------------------------------------------------------------------- /tex/fig/950415476737952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950415476737952.png -------------------------------------------------------------------------------- /tex/fig/950415873256992.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950415873256992.png -------------------------------------------------------------------------------- /tex/fig/950569639986880.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950569639986880.png -------------------------------------------------------------------------------- /tex/fig/950571217609344.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950571217609344.png -------------------------------------------------------------------------------- /tex/fig/950572257640320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950572257640320.png -------------------------------------------------------------------------------- /tex/fig/950751840957632.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950751840957632.png -------------------------------------------------------------------------------- /tex/fig/950751878708448.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950751878708448.png -------------------------------------------------------------------------------- /tex/fig/950751913543456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950751913543456.png -------------------------------------------------------------------------------- /tex/fig/950751959286720.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/950751959286720.png -------------------------------------------------------------------------------- /tex/fig/951373547960800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/951373547960800.png -------------------------------------------------------------------------------- /tex/fig/951373657012736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/951373657012736.png -------------------------------------------------------------------------------- /tex/fig/951373763967808.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/951373763967808.png -------------------------------------------------------------------------------- /tex/fig/951373786253056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/951373786253056.png -------------------------------------------------------------------------------- /tex/fig/951383573211136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/951383573211136.png -------------------------------------------------------------------------------- /tex/fig/951385556253728.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/951385556253728.png -------------------------------------------------------------------------------- /tex/fig/951386163120736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/951386163120736.png -------------------------------------------------------------------------------- /tex/fig/954926361167104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/954926361167104.png -------------------------------------------------------------------------------- /tex/fig/954926929668576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/954926929668576.png -------------------------------------------------------------------------------- /tex/fig/954926987474240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/954926987474240.png -------------------------------------------------------------------------------- /tex/fig/954927046197152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/954927046197152.png -------------------------------------------------------------------------------- /tex/fig/955624199250624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/955624199250624.png -------------------------------------------------------------------------------- /tex/fig/955626563299584.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/955626563299584.png -------------------------------------------------------------------------------- /tex/fig/955712165379744.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/955712165379744.png -------------------------------------------------------------------------------- /tex/fig/955719702776576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/955719702776576.png -------------------------------------------------------------------------------- /tex/fig/956056345770752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/956056345770752.png -------------------------------------------------------------------------------- /tex/fig/956056362546592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/956056362546592.png -------------------------------------------------------------------------------- /tex/fig/956084297542656.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/956084297542656.png -------------------------------------------------------------------------------- /tex/fig/956187757507296.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/956187757507296.png -------------------------------------------------------------------------------- /tex/fig/956196693474432.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/956196693474432.png -------------------------------------------------------------------------------- /tex/fig/956198702546240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/956198702546240.png -------------------------------------------------------------------------------- /tex/fig/956198878703904.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/956198878703904.png -------------------------------------------------------------------------------- /tex/fig/966760155050624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/966760155050624.png -------------------------------------------------------------------------------- /tex/fig/966760380198752.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/966760380198752.png -------------------------------------------------------------------------------- /tex/fig/967446760519840.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/967446760519840.png -------------------------------------------------------------------------------- /tex/fig/967453175707264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/967453175707264.png -------------------------------------------------------------------------------- /tex/fig/967455607327072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/967455607327072.png -------------------------------------------------------------------------------- /tex/fig/967464310443456.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/967464310443456.png -------------------------------------------------------------------------------- /tex/fig/967488004941504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/967488004941504.png -------------------------------------------------------------------------------- /tex/fig/967965753208928.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/967965753208928.png -------------------------------------------------------------------------------- /tex/fig/972515044819040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/972515044819040.png -------------------------------------------------------------------------------- /tex/fig/972676918012640.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/972676918012640.png -------------------------------------------------------------------------------- /tex/fig/972677353581536.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/fig/972677353581536.png -------------------------------------------------------------------------------- /tex/gen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/gen.pdf -------------------------------------------------------------------------------- /tex/gen.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Theigrams/LXF-Python-Tutorial/4e1b73a1228d0f4431e258acdb33b9842f02c8c8/tex/gen.synctex.gz --------------------------------------------------------------------------------